mirror of
https://github.com/Alia5/GlosSI.git
synced 2024-10-30 15:20:38 +00:00
10 lines
234 B
Bash
10 lines
234 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
|
||
|
cd deps/SFML
|
||
|
|
||
|
cmake -S . -B out/Debug -DCMAKE_BUILD_TYPE=Debug
|
||
|
cmake --build out/Debug --config Debug
|
||
|
|
||
|
cmake -S . -B out/Release -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||
|
cmake --build out/Release --config RelWithDebInfo
|