mirror of
https://github.com/Thracky/GlosSI.git
synced 2024-11-07 03:20:40 +00:00
10 lines
234 B
Bash
Executable File
10 lines
234 B
Bash
Executable File
#!/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 |