From 08bc033ff0de0f22e5001564ae51d5b210619784 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 26 Aug 2009 07:51:16 +0000 Subject: [PATCH] Fixed default input and output paths now that the compiled assembly is placed into Binaries/Generator/[Debug|Release] instead of Binaries/[Debug|Release]. --- Source/Bind/CL/CLGenerator.cs | 2 +- Source/Bind/Settings.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Bind/CL/CLGenerator.cs b/Source/Bind/CL/CLGenerator.cs index f22310c5..8354adb8 100644 --- a/Source/Bind/CL/CLGenerator.cs +++ b/Source/Bind/CL/CLGenerator.cs @@ -38,7 +38,7 @@ namespace Bind.CL Settings.OutputClass = "CL"; 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.NoDebugHelpers; diff --git a/Source/Bind/Settings.cs b/Source/Bind/Settings.cs index 3026b0f7..3ee02d20 100644 --- a/Source/Bind/Settings.cs +++ b/Source/Bind/Settings.cs @@ -13,10 +13,10 @@ namespace Bind // Disable BeforeFieldInit. static Settings() { } - public const string DefaultInputPath = "../../Source/Bind/Specifications"; - public const string DefaultOutputPath = "../../Source/OpenTK/Graphics/OpenGL"; + public const string DefaultInputPath = "../../../Source/Bind/Specifications"; + public const string DefaultOutputPath = "../../../Source/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 DefaultLicenseFile = "License.txt";