This commit is contained in:
2025-05-08 21:27:29 -05:00
parent c143b8d3a5
commit 7456bf9bc0
49 changed files with 604 additions and 1197 deletions

View File

@@ -94,7 +94,7 @@ func Tesses.CrossLang.BuildTool(pm)
if(TypeOf(info.type) == "String" && info.type == "template")
{
//vfs, strm, name, version, info
var subdir = FS.SubdirFilesystem(FS.Local,dir);
var subdir = new SubdirFilesystem(FS.Local,dir);
var output = $"{name}-{version}.crvm";
var outFile = FS.Local.OpenFile(dir / outputDir / output,"wb");
@@ -166,7 +166,7 @@ func Tesses.CrossLang.BuildTool(pm)
env.LoadFileWithDependencies(FS.Local,newFile);
env.GetDictionary().RunTool({
Project = FS.SubdirFilesystem(FS.Local, dir),
Project = new SubdirFilesystem(FS.Local, dir),
ProjectInfo = info,
GeneratedSource = sources,
Config = this.Config
@@ -236,7 +236,7 @@ func Tesses.CrossLang.BuildTool(pm)
Info = Json.Encode(info),
Icon = icon,
Tools = file_tools,
ResourceFileSystem = FS.SubdirFilesystem(FS.Local, dir / resDir),
ResourceFileSystem = new SubdirFilesystem(FS.Local, dir / resDir),
Dependencies = file_deps,
Output = outFile
});