Add build modes. Engine - build framework only. Tests - build unit tests only. TestGame - build TestGame and engine libraries. All - build all. Add scripts for easy build projects in different modes. "build_tests.bat" - create build directory, configure tests project and build there. "build_Engine.bat" - create build directory, configure engine projects, build there and copy header files to "build/bin/include".

This commit is contained in:
Jiga228
2025-10-24 17:05:10 +07:00
parent 8d7dcac563
commit 8965669d6a
5 changed files with 49 additions and 11 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
@echo off
mkdir build
cd build
cmake .. -A x64
cmake -DBUILD_MODE=All .. -A x64
pause