9 lines
163 B
Bash
Executable File
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
|
|
|