mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-19 22:28:23 +00:00
Fixed default input and output paths now that the compiled assembly is placed into Binaries/Generator/[Debug|Release] instead of Binaries/[Debug|Release].
This commit is contained in:
parent
3081d38199
commit
08bc033ff0
|
@ -38,7 +38,7 @@ namespace Bind.CL
|
||||||
|
|
||||||
Settings.OutputClass = "CL";
|
Settings.OutputClass = "CL";
|
||||||
Settings.OutputNamespace = "OpenTK.Compute." + name;
|
Settings.OutputNamespace = "OpenTK.Compute." + name;
|
||||||
Settings.OutputPath = Path.Combine("../../Source/OpenTK/Compute", name);
|
Settings.OutputPath = Path.Combine("../../../Source/OpenTK/Compute", name);
|
||||||
|
|
||||||
//Settings.Compatibility &= ~Settings.Legacy.TurnVoidPointersToIntPtr;
|
//Settings.Compatibility &= ~Settings.Legacy.TurnVoidPointersToIntPtr;
|
||||||
Settings.Compatibility |= Settings.Legacy.NoDebugHelpers;
|
Settings.Compatibility |= Settings.Legacy.NoDebugHelpers;
|
||||||
|
|
|
@ -13,10 +13,10 @@ namespace Bind
|
||||||
// Disable BeforeFieldInit.
|
// Disable BeforeFieldInit.
|
||||||
static Settings() { }
|
static Settings() { }
|
||||||
|
|
||||||
public const string DefaultInputPath = "../../Source/Bind/Specifications";
|
public const string DefaultInputPath = "../../../Source/Bind/Specifications";
|
||||||
public const string DefaultOutputPath = "../../Source/OpenTK/Graphics/OpenGL";
|
public const string DefaultOutputPath = "../../../Source/OpenTK/Graphics/OpenGL";
|
||||||
public const string DefaultOutputNamespace = "OpenTK.Graphics.OpenGL";
|
public const string DefaultOutputNamespace = "OpenTK.Graphics.OpenGL";
|
||||||
public const string DefaultDocPath = "../../Source/Bind/Specifications/Docs";
|
public const string DefaultDocPath = "../../../Source/Bind/Specifications/Docs";
|
||||||
public const string DefaultDocFile = "ToInlineDocs.xslt";
|
public const string DefaultDocFile = "ToInlineDocs.xslt";
|
||||||
public const string DefaultLicenseFile = "License.txt";
|
public const string DefaultLicenseFile = "License.txt";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue