mirror of
https://github.com/mlaux/gb6.git
synced 2025-01-06 12:31:12 +00:00
7 lines
79 B
Bash
Executable File
7 lines
79 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
make
|
|
cd ..
|