From 2bf0920cc573d7067e2f5dad4b108d24f5a886f9 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Fri, 15 Aug 2025 13:12:39 -0300 Subject: initial commit --- build.bat | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 build.bat (limited to 'build.bat') diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..980e997 --- /dev/null +++ b/build.bat @@ -0,0 +1,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 -- cgit v1.2.3