예제 #1
0
 public static void CleanupAndCreateEmscriptenDirs()
 {
     EmscriptenPaths.SetupDataPath();
     if (Directory.Exists(EmscriptenPaths.tempDirForEmscriptenCompiler))
     {
         Directory.Delete(EmscriptenPaths.tempDirForEmscriptenCompiler, true);
     }
     if (Directory.Exists(EmscriptenPaths.workingDirForEmscriptenCompiler))
     {
         Directory.Delete(EmscriptenPaths.workingDirForEmscriptenCompiler, true);
     }
     Directory.CreateDirectory(EmscriptenPaths.tempDirForEmscriptenCompiler);
     Directory.CreateDirectory(EmscriptenPaths.workingDirForEmscriptenCompiler);
 }
예제 #2
0
 public static IEnumerable <string> GetIncludeFullPaths(IEnumerable <string> includePaths)
 {
     EmscriptenPaths.SetupDataPath();
     if (< > f__am$cache0 == null)
     {