mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
9 lines
No EOL
278 B
Batchfile
9 lines
No EOL
278 B
Batchfile
@echo off
|
|
@echo deleing old output
|
|
if exist stub_test.obj del stub_test.obj > NUL
|
|
if exist stub_test.ilk del stub_test.ilk > NUL
|
|
if exist *.pdb del *.pdb > NUL
|
|
if exist stub_test.exe del stub_test.exe > NUL
|
|
|
|
@echo building...
|
|
cl /nologo -Zi -DWIN32 stub_test.cpp |