You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI/buildSFML.sh

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