[commit] r2531 - trunk/SDK/BON/Wizard/Scripts/1033

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Wed Sep 17 12:35:23 CDT 2014


Author: ksmyth
Date: Wed Sep 17 12:35:23 2014
New Revision: 2531

Log:
Interpreter wizard: set MIDL include to include $(GME_ROOT)\GME\Release for building on dev machines

Don't require GME Debug config to be built. Follow-up to r2521

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	Wed Sep 17 11:50:04 2014	(r2530)
+++ trunk/SDK/BON/Wizard/Scripts/1033/default.js	Wed Sep 17 12:35:23 2014	(r2531)
@@ -200,9 +200,9 @@
 		
 		// DEBUG MIDL SETTINGS
 		var MIDLTool = config.Tools('VCMIDLTool');
-		MIDLTool.PreprocessorDefinitions="_DEBUG";		
+		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);$(GME_ROOT)\\GME\\Release";
 		MIDLTool.HeaderFilename = "";
         
         // DEBUG COMPILER SETTINGS
@@ -247,9 +247,9 @@
 
         // RELEASE MIDL SETTINGS
 	    var MIDLTool = config.Tools('VCMIDLTool');
-		MIDLTool.PreprocessorDefinitions="NDEBUG";		
+		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);$(GME_ROOT)\\GME\\Release";
 		MIDLTool.HeaderFilename = "";
 		
 		// RELEASE COMPILER SETTINGS


More information about the gme-commit mailing list