2024-09-15 01:37:29 -06:00
|
|
|
# Building
|
|
|
|
|
|
|
|
ICEngine supports both single and multi type configuration types:
|
2024-09-15 02:18:15 -06:00
|
|
|
Make/Ninja
|
2024-09-15 01:37:29 -06:00
|
|
|
|
|
|
|
```bash
|
|
|
|
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build build
|
|
|
|
```
|
|
|
|
|
|
|
|
\- OR -
|
|
|
|
|
|
|
|
Visual Studio:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cmake -S . -B build -G "Visual Studio 16 2019" # or your preferred Visual Studio version
|
|
|
|
cmake --build build --config Debug
|
|
|
|
cmake --build build --config Release
|
2024-09-15 02:18:15 -06:00
|
|
|
```
|