diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-09-21 23:12:28 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-09-21 23:12:28 +0300 |
commit | e9ecc6b4df41ced1b9dd39ad638435945d1a6374 (patch) | |
tree | 10b96db62df38aa269d1cc47d7f5be2d1d4513da /build.bat | |
parent | b30d161ea14254173912fbb2afd296168f2561d8 (diff) | |
download | c_wizard-e9ecc6b4df41ced1b9dd39ad638435945d1a6374.tar.gz c_wizard-e9ecc6b4df41ced1b9dd39ad638435945d1a6374.zip |
Diffstat (limited to 'build.bat')
-rw-r--r-- | build.bat | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,14 +14,14 @@ set "obj_dir=obj\" set "inc_dir=.\include" set "lib_dir=.\lib" -set "warn=/wd4244 /wd5105 /wd4127" +set "warn=/wd4244 /wd5105 /wd4127 /wd4100 /wd4456 /wd4267" set "cdefines=/D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE /D PLATFORM_DESKTOP /D GRAPHICS_API_OPENGL_33" set "cflags=/nologo /std:c11 /utf-8 /W4 /WX- /diagnostics:column /TC /Zi /fp:fast /I%inc_dir% /validate-charset" set "flag=/D DEBUG /MTd /Od /GS /MP /cgthreads8" -set "link_param=/link /INCREMENTAL:NO /SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup /NODEFAULTLIB:libcmt /LIBPATH:%lib_dir% raylib.lib opengl32.lib kernel32.lib shell32.lib user32.lib gdi32.lib winmm.lib" +set "link_param=/link /INCREMENTAL:NO /SUBSYSTEM:CONSOLE /ENTRY:mainCRTStartup /NODEFAULTLIB:libcmt /LIBPATH:%lib_dir% raylib.lib opengl32.lib kernel32.lib shell32.lib user32.lib gdi32.lib winmm.lib" if exist %bin_dir% ( rmdir /s /q %bin_dir% ) if exist %obj_dir% ( rmdir /s /q %obj_dir% ) |