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