[commit] r1330 - trunk/SDK/BON/Wizard/Scripts/1033
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Tue May 31 12:37:26 CDT 2011
Author: ksmyth
Date: Tue May 31 12:37:26 2011
New Revision: 1330
Log:
MIDL doesnt like include dir $(ProjectDir); change to $(ProjectDir)\.
Modified:
trunk/SDK/BON/Wizard/Scripts/1033/default.js
Modified: trunk/SDK/BON/Wizard/Scripts/1033/default.js
==============================================================================
--- trunk/SDK/BON/Wizard/Scripts/1033/default.js Tue May 31 11:23:31 2011 (r1329)
+++ trunk/SDK/BON/Wizard/Scripts/1033/default.js Tue May 31 12:37:26 2011 (r1330)
@@ -199,7 +199,7 @@
var MIDLTool = config.Tools('VCMIDLTool');
MIDLTool.PreprocessorDefinitions="_DEBUG";
MIDLTool.TypeLibraryName = "$(ProjectDir)$(InputName).tlb";
- MIDLTool.AdditionalIncludeDirectories = "$(ProjectDir);$(GME_ROOT)/Interfaces;$(GME_ROOT)/Gme/Interfaces;$(GME_ROOT)/bin;$(GME_ROOT)/Gme/$(ConfigurationName)";
+ MIDLTool.AdditionalIncludeDirectories = "$(ProjectDir)\.;$(GME_ROOT)/Interfaces;$(GME_ROOT)/Gme/Interfaces;$(GME_ROOT)/bin;$(GME_ROOT)/Gme/$(ConfigurationName)";
MIDLTool.HeaderFilename = "";
// DEBUG COMPILER SETTINGS
@@ -247,7 +247,7 @@
var MIDLTool = config.Tools('VCMIDLTool');
MIDLTool.PreprocessorDefinitions="NDEBUG";
MIDLTool.TypeLibraryName = "$(ProjectDir)$(InputName).tlb";
- MIDLTool.AdditionalIncludeDirectories = "$(ProjectDir);$(GME_ROOT)/Interfaces;$(GME_ROOT)/Gme/Interfaces;$(GME_ROOT)/bin;$(GME_ROOT)/Gme/$(ConfigurationName)";
+ MIDLTool.AdditionalIncludeDirectories = "$(ProjectDir)\.;$(GME_ROOT)/Interfaces;$(GME_ROOT)/Gme/Interfaces;$(GME_ROOT)/bin;$(GME_ROOT)/Gme/$(ConfigurationName)";
MIDLTool.HeaderFilename = "";
// RELEASE COMPILER SETTINGS
More information about the gme-commit
mailing list