7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LIB_INCLUDE="-lglfw -lGL -lm"
|
|
g++ -g -g3 -DOS_LINUX=1 -DENABLE_ASSERT=1 -xc -std=c99 ./src/main.cpp -o ./target/somaesque $LIB_INCLUDE
|
|
./target/somaesque
|
|
|