Added back postbuild.cmd for github action

This commit is contained in:
NovaRain
2023-05-19 10:35:59 +08:00
parent c73f311b22
commit c2dde7485a
+21
View File
@@ -0,0 +1,21 @@
@ECHO OFF
rem debug, release, etc.
SET type=%1
rem full path to the compiled DLL
SET target=%2
::SET destination=d:\GAMES\Fallout2\@RP\ddraw.dll
SET pdb="%~dpn2.pdb"
IF EXIST ducible.exe (
IF EXIST %pdb% (
ducible %target% %pdb%
) ELSE (
ducible %target%
)
)
::echo Copying %target% to %destination% ...
::copy %target% %destination%