From ad8213f35523cbb07f418ae275af448a47cc0288 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Sun, 25 May 2025 22:37:57 -0300 Subject: linux Makefile + fix most compilation problems I wanted to see if the compiler had any problems with the code so far and added a few stub definitions so that each file would properly compile. We still fail when linking but we're able to to find and fix compile time errors. --- build.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.bat') diff --git a/build.bat b/build.bat index ccee552..a0e501f 100644 --- a/build.bat +++ b/build.bat @@ -11,8 +11,8 @@ set OUTPUTPDB=out.pdb set INSTALLDIR=..\bin @REM set SRC="../src/creature.cc" "../src/main.cc" "../src/player.cc" "../src/skill.cc" -set SRC="../src/script.cc" "../src/util.cc" -cl -W3 -WX -Zi -we4244 -we4456 -we4457 -wd4996 -std:c++14 -utf-8 -MP8 -DBUILD_DEBUG=1 -DARCH_X64=1 -D_CRT_SECURE_NO_WARNINGS=1 -Fe:"%OUTPUTEXE%" -Fd:"%OUTPUTPDB%" %* %SRC% /link -subsystem:console -incremental:no -opt:ref -dynamicbase "ws2_32.lib" +set SRC="../src/map.cc" "../src/script.cc" "../src/util.cc" +cl -W3 -WX -Zi -we4244 -we4456 -we4457 -wd4996 -std:c++14 -EHsc -utf-8 -MP8 -DBUILD_DEBUG=1 -DARCH_X64=1 -D_CRT_SECURE_NO_WARNINGS=1 -Fe:"%OUTPUTEXE%" -Fd:"%OUTPUTPDB%" %* %SRC% /link -subsystem:console -incremental:no -opt:ref -dynamicbase "ws2_32.lib" if errorlevel 1 exit /b errorlevel -- cgit v1.2.3