mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 07:21:14 +00:00
Updated Build.cs to use Path.Combine (fixes issues under linux). Fixed
Prebuild.xml to correctly reference text files. Tested under linux.
This commit is contained in:
parent
f96aafdf75
commit
c516340dea
BIN
Build/Build.exe
BIN
Build/Build.exe
Binary file not shown.
12
Prebuild.xml
12
Prebuild.xml
|
@ -22,11 +22,11 @@
|
||||||
</Configuration>
|
</Configuration>
|
||||||
|
|
||||||
<Files>
|
<Files>
|
||||||
<File>.\Todo.txt</File>
|
<File>Todo.txt</File>
|
||||||
<File>.\Release.txt</File>
|
<File>Release.txt</File>
|
||||||
<File>.\Changelog.txt</File>
|
<File>Changelog.txt</File>
|
||||||
<File>.\License.txt</File>
|
<File>License.txt</File>
|
||||||
<File>.\Instructions.txt</File>
|
<File>Instructions.txt</File>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
||||||
<Project name="Build" path=".\Source\Build" language="C#" type="Exe">
|
<Project name="Build" path=".\Source\Build" language="C#" type="Exe">
|
||||||
|
@ -314,4 +314,4 @@
|
||||||
|
|
||||||
</Solution>
|
</Solution>
|
||||||
|
|
||||||
</Prebuild>
|
</Prebuild>
|
||||||
|
|
|
@ -10,7 +10,7 @@ namespace OpenTK.Build
|
||||||
{
|
{
|
||||||
static string RootPath;
|
static string RootPath;
|
||||||
static string ToolPath = "Build\\";
|
static string ToolPath = "Build\\";
|
||||||
static string PrebuildPath = ToolPath + "Prebuild.exe";
|
static string PrebuildPath = Path.Combine(ToolPath, "Prebuild.exe");
|
||||||
static string BinPath = "Binaries\\";
|
static string BinPath = "Binaries\\";
|
||||||
//string ObjPath
|
//string ObjPath
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue