Files
sfall/sfall/postbuild.cmd
T
NovaRain 184af43928 Attempt for reproducible builds
* ducible.exe is built with v140_xp toolset and /arch:SSE.
2023-04-17 10:06:46 +08:00

21 lines
364 B
Batchfile

@ECHO OFF
rem debug, release, etc.
SET type=%1
rem full path to the compiled DLL
SET target=%2
SET destination=C:\Games\Fallout2\ddraw.dll
SET pdb="%~dpn2.pdb"
IF EXIST ducible.exe (
IF EXIST %pdb% (
ducible %target% %pdb%
) ELSE (
ducible %target%
)
)
rem echo Copying %target% to %destination% ...
rem copy %target% %destination%