summaryrefslogtreecommitdiffhomepage
path: root/compile.bat
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-04-24 04:10:36 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-04-24 04:10:36 +0100
commit82aee3171eaa1d9a6eb69242655fd972bdd0b07b (patch)
treedb6c1cdec7b38c3d5a78ec76a59f14f1f95f6f26 /compile.bat
parentaf33ebb75a4740d4cf9b6fdbfcbb3014a5226fe3 (diff)
Move WIN32_LEAN_AND_MEAN and NOMINMAX into flags
They're literally always defined thusfar, and it's always possible to include specific headers for other stuff. So, rather than litter the source with defines (which might not even work in the likes of os.h if some other system header already decided to define/include stuff), let's just define it at the build script level.
Diffstat (limited to 'compile.bat')
-rw-r--r--compile.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.bat b/compile.bat
index 3f4fe78..0f88cee 100644
--- a/compile.bat
+++ b/compile.bat
@@ -31,7 +31,7 @@ goto :main
for /F %%b in ("%1") do set basename=%%~nb
set objs=%objs% .build/%basename%.o
%CC% -m32 -c -flto %cflags% %warnings% -I.build/include -D_CRT_SECURE_NO_WARNINGS -D_DLL ^
--DFILE_BASENAME=%basename% -o .build/%basename%.o %1 || exit /b
+-DWIN32_LEAN_AND_MEAN -DNOMINMAX -DFILE_BASENAME=%basename% -o .build/%basename%.o %1 || exit /b
goto :eof
:main