Updated to work on Linux, redesigned core

This commit is contained in:
David Anderson
2005-08-24 02:53:38 +00:00
parent 5b208eb9f5
commit 82fed37247
18 changed files with 608 additions and 115 deletions

View File

@ -33,9 +33,14 @@ namespace AMXXRelease
public override sealed bool CopyExtraFiles(string basedir, string source)
{
File.Copy(source + "\\dlls\\csx\\source\\WinCSX\\Release\\WinCSX.exe",
if ((int)System.Environment.OSVersion.Platform == 128)
{
} else {
File.Copy(source + "\\dlls\\csx\\source\\WinCSX\\Release\\WinCSX.exe",
basedir + "\\data\\WinCSX.exe",
true);
}
return true;
}