From 8443ef450537106aeca5b7b5ac5efc574df03bd6 Mon Sep 17 00:00:00 2001 From: Rasmus Anthin Date: Tue, 17 Sep 2024 23:07:39 +0200 Subject: [PATCH] build.bat: * Oh, I probably need to add 3rdparty/include as an include path to the cl command. --- Pilot_Episode/build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pilot_Episode/build.bat b/Pilot_Episode/build.bat index 0a3c61d..3d2e94f 100644 --- a/Pilot_Episode/build.bat +++ b/Pilot_Episode/build.bat @@ -1,7 +1,7 @@ call ..\..\lib\Core\build.bat REM Compile the demo using VC++ -cl /std:c++20 /EHsc /Fe:bin/pilot_episode.exe /Fo:bin/pilot_episode.obj .\pilot_episode.cpp /I..\..\lib +cl /std:c++20 /EHsc /Fe:bin/pilot_episode.exe /Fo:bin/pilot_episode.obj .\pilot_episode.cpp /I..\..\lib /I..\..\3rdparty\include if %errorlevel% neq 0 ( echo Build failed with error code %errorlevel%.