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.
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 \
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 \