Fixed Pre-Build Step In Debug Mode

Fixed an error in a pre-build step which attempted to 'touch'
attractMode.obj so that the date on the title screen would always be
updated.
This commit is contained in:
Allen
2015-12-01 06:45:16 -05:00
parent f585d910f3
commit a5db3fbb87
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@@ -12,4 +12,5 @@ src/DMX_Remake/DMX_Remake/Debug/DMX_Debug.exe.intermediate.manifest
src/DMX_Remake/DMX_Remake/Release/DMX.exe.intermediate.manifest
*.user
src/DMX_Remake/Debug/DMX_Debug.exe
src/DMX_Remake/Release/DMX.exe
src/DMX_Remake/Release/DMX.exe
*.opensdf

View File

@@ -63,7 +63,7 @@
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
</Link>
<PreBuildEvent>
<Command>del $(TargetDir)\debug\attractMode.obj</Command>
<Command>del $(ProjectDir)\debug\attractMode.obj</Command>
<Message>touch the attract mode to update the __DATE__</Message>
</PreBuildEvent>
</ItemDefinitionGroup>