Files
somaesque-native/build
Daniel Ledda b84b59df09 linux build
2025-01-07 10:29:07 +01:00

9 lines
163 B
Bash
Executable File

#!/bin/bash
LIB_INCLUDE="-lglfw -lGL"
g++ -g -g3 -DOS_LINUX=1 -DENABLE_ASSERT=1 ./src/main.cpp -o ./target/somaesque $LIB_INCLUDE
pushd target
./somaesque
popd