Attempt at getting webternet extension into build process.
This commit is contained in:
@@ -31,10 +31,13 @@ namespace builder
|
||||
else if (cfg.Platform == BasePlatform.Platform_Windows)
|
||||
{
|
||||
bld = new Win32Builder(cfg);
|
||||
if (cfg.pdb_log_file != null && File.Exists(cfg.pdb_log_file))
|
||||
/* Do not delete this file anymore. We don't support rebuilds, and thus the file
|
||||
* is guaranteed to be wiped by buildbot.
|
||||
*/
|
||||
/*if (cfg.pdb_log_file != null && File.Exists(cfg.pdb_log_file))
|
||||
{
|
||||
File.Delete(cfg.pdb_log_file);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
try
|
||||
|
||||
@@ -292,6 +292,13 @@ namespace builder
|
||||
lib.vcproj_name = "clientprefs";
|
||||
libraries.Add(lib);
|
||||
|
||||
lib = new Library();
|
||||
lib.package_path = "addons/sourcemod/extensions";
|
||||
lib.source_path = "extensions/curl";
|
||||
lib.binary_name = "webternet.ext";
|
||||
lib.vcproj_name = "curl";
|
||||
libraries.Add(lib);
|
||||
|
||||
return (Library [])libraries.ToArray(typeof(Library));
|
||||
}
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace builder
|
||||
}
|
||||
else if (lib.build_mode == BuildMode.BuildMode_Left4Dead)
|
||||
{
|
||||
config_name = config_name + " - Left 4 Dead";
|
||||
config_name = config_name + " - Left 4 Dead";
|
||||
}
|
||||
|
||||
string binpath = Config.PathFormat("{0}/{1}/{2}",
|
||||
|
||||
Reference in New Issue
Block a user