mirror of
https://github.com/MichaelFisher1997/opengl-cpp.git
synced 2025-04-26 13:43:11 +00:00
7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
mkdir -p build
|
|
#below is for full debugging
|
|
#g++ -g -O0 -Wall -Wextra src/*.cpp -o build/opengl -lSDL2 -lGLEW -lGL
|
|
g++ -g -O src/*.cpp -o build/opengl -lSDL2 -lGLEW -lGL
|
|
./build/opengl
|