sourcemod/tools/builder/Win32Builder.cs
David Anderson 7a8d164b25 Added compression support
--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40409
2007-01-28 04:19:46 +00:00

97 lines
2.0 KiB
C#

using System;
using System.IO;
using System.Diagnostics;
namespace builder
{
public class Win32Builder : ABuilder
{
public Win32Builder(Config _cfg)
{
cfg = _cfg;
}
public override string CompressPackage(Package pkg)
{
string lpath = null, ltarget = null;
pkg.GetCompressBases(ref lpath, ref ltarget);
string local_dir = Config.PathFormat("{0}/{1}",
cfg.OutputBase,
lpath);
string name = PackageBuildName(pkg) + ".zip";
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = cfg.Compressor;
info.WorkingDirectory = local_dir;
info.Arguments = "-r \"" + name + "\" \"" + ltarget + "\"";
info.UseShellExecute = false;
Process p = Process.Start(info);
p.WaitForExit();
local_dir = Config.PathFormat("{0}/{1}", local_dir, name);
if (!File.Exists(local_dir))
{
return null;
}
return name;
}
public override bool BuildLibrary(Package pkg, Library lib, ref string _binName, ref string _binPath)
{
ProcessStartInfo info = new ProcessStartInfo();
string path = Config.PathFormat("{0}/{1}/msvc8",
cfg.SourceBase,
lib.LocalPath);
/* PlatformExt ignored for us */
string binName = lib.Name + (lib.IsExecutable ? ".exe" : ".dll");
string binpath = Config.PathFormat("{0}/{1}/{2}",
path,
lib.ReleaseBuild,
binName);
if (File.Exists(binpath))
{
File.Delete(binpath);
}
string projectFile = null;
if (lib.ProjectFile != null)
{
projectFile = lib.ProjectFile + ".vcproj";
}
else
{
projectFile = lib.Name + ".vcproj";
}
info.WorkingDirectory = path;
info.FileName = cfg.BuilderPath;
info.Arguments = "/rebuild " + lib.ReleaseBuild + " " + projectFile;
info.UseShellExecute = false;
Process p = Process.Start(info);
p.WaitForExit();
p.Close();
if (!File.Exists(binpath))
{
return false;
}
_binName = binName;
_binPath = binpath;
return true;
}
}
}