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:
@@ -0,0 +1,5 @@
|
||||
@echo off
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DBUILD_MODE=Tests ..
|
||||
cmake --build . --config Release
|
||||
Reference in New Issue
Block a user