mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
21 lines
364 B
Batchfile
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% |