mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 05:18:38 +09:00
9 lines
No EOL
296 B
Batchfile
9 lines
No EOL
296 B
Batchfile
@echo off
|
|
@echo deleing old output
|
|
if exist invoke_test.obj del invoke_test.obj > NUL
|
|
if exist invoke_test.ilk del invoke_test.ilk > NUL
|
|
if exist *.pdb del *.pdb > NUL
|
|
if exist invoke_test.exe del invoke_test.exe > NUL
|
|
|
|
@echo building...
|
|
cl /nologo -Zi -DWIN32 invoke_test.cpp |