blob: 980e997fdcce04ff9d4c67ab7221330b9c1569c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@SETLOCAL
@SET CFLAGS=-W3 -WX -Zi -D_CRT_SECURE_NO_WARNINGS=1
@SET LFLAGS=-subsystem:console -incremental:no -opt:ref -dynamicbase user32.lib
pushd %~dp0
del /q .\build\*
mkdir .\build
pushd .\build
cl %* -Fe:"ipchanger.exe" %CFLAGS% "../ipchanger.cc" /link %LFLAGS%
cl %* -Fe:"memscan.exe" %CFLAGS% "../memscan.cc" /link %LFLAGS%
popd
popd
@ENDLOCAL
|