]> granicus.if.org Git - nethack/commitdiff
win32 IDE fix
authornethack.allison <nethack.allison>
Wed, 11 Dec 2002 03:52:06 +0000 (03:52 +0000)
committernethack.allison <nethack.allison>
Wed, 11 Dec 2002 03:52:06 +0000 (03:52 +0000)
A recent change described as:
"changed the IDE files to build NetHackW.exe instead of
nethackw.exe. This is only cosmetic, but consistent with the
other executable."

was not just cosmetic. The changes prevented the
executable from being copied to the target binary
directory at all, due to the removal of the necessary
trailing tab.

win/win32/nethackw.dsp

index e7e7f9ab2bb5cc6def04af3d095b0b7789d4390b..980e26381269fbe79e344821c28cff286d5b3d31 100644 (file)
@@ -60,7 +60,7 @@ LINK32=link.exe
 OutDir=.\Release
 SOURCE="$(InputPath)"
 PostBuild_Desc=Install exe
-PostBuild_Cmds=copy $(OutDir)\NetHackW.exe ..\binary \
+PostBuild_Cmds=copy $(OutDir)\NetHackW.exe ..\binary   \
 copy ..\dat\nhdat ..\binary    \
 copy ..\dat\license ..\binary  \
 if exist tiles.bmp copy tiles.bmp ..\binary    \
@@ -101,7 +101,7 @@ OutDir=.\Debug
 SOURCE="$(InputPath)"
 PostBuild_Desc=Install exe
 PostBuild_Cmds=if NOT exist ..\binary\*.* mkdir ..\binary      \
-copy $(OutDir)\NetHackW.exe ..\binary \
+copy $(OutDir)\NetHackW.exe ..\binary  \
 copy ..\dat\nhdat ..\binary    \
 copy ..\dat\license ..\binary  \
 if exist tiles.bmp copy tiles.bmp ..\binary    \