5 lines
75 B
Bash
5 lines
75 B
Bash
|
#!/bin/bash
|
||
|
cmake -S . -B build
|
||
|
cmake --build build
|
||
|
./build/src/OpenGLTest
|