[commit] r1309 - trunk/SDK/DecoratorWizard/Scripts/1033

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Fri May 13 15:06:07 CDT 2011


Author: ksmyth
Date: Fri May 13 15:06:07 2011
New Revision: 1309

Log:
Keep track of reg data in IntDir, or else a project may win the race

Modified:
   trunk/SDK/DecoratorWizard/Scripts/1033/default.js

Modified: trunk/SDK/DecoratorWizard/Scripts/1033/default.js
==============================================================================
--- trunk/SDK/DecoratorWizard/Scripts/1033/default.js	Fri May 13 15:05:29 2011	(r1308)
+++ trunk/SDK/DecoratorWizard/Scripts/1033/default.js	Fri May 13 15:06:07 2011	(r1309)
@@ -135,8 +135,8 @@
 		// DEBUG CUSTOM BUILD SETTINGS
 		var CBTool = config.Tools('VCCustomBuildTool');
 		CBTool.Description = "Performing registration (requires elevated priviledges on Windows Vista)...";
-		CBTool.CommandLine = "regsvr32 /s /c \"$(TargetPath)\"\necho regsvr32 exec. time > \"$(OutDir)\\regsvr32.trg\"\n";
-		CBTool.Outputs = "$(OutDir)\\regsvr32.trg";
+		CBTool.CommandLine = "regsvr32 /s /c \"$(TargetPath)\"\necho regsvr32 exec. time > \"$(IntDir)\\regsvr32.trg\"\n";
+		CBTool.Outputs = "$(IntDir)\\regsvr32.trg";
 
 		// DEBUG MIDL SETTINGS
 		var MIDLTool = config.Tools('VCMIDLTool');
@@ -188,8 +188,8 @@
 		// RELEASE CUSTOM BUILD SETTINGS
 		var CBTool = config.Tools('VCCustomBuildTool');
 		CBTool.Description = "Performing registration (requires elevated priviledges on Windows Vista)...";
-		CBTool.CommandLine = "regsvr32 /s /c \"$(TargetPath)\"\necho regsvr32 exec. time > \"$(OutDir)\\regsvr32.trg\"\n";
-		CBTool.Outputs = "$(OutDir)\\regsvr32.trg";
+		CBTool.CommandLine = "regsvr32 /s /c \"$(TargetPath)\"\necho regsvr32 exec. time > \"$(IntDir)\\regsvr32.trg\"\n";
+		CBTool.Outputs = "$(IntDir)\\regsvr32.trg";
 
 		// RELEASE MIDL SETTINGS
 		var MIDLTool = config.Tools('VCMIDLTool');


More information about the gme-commit mailing list