8 lines
101 B
Bash
Executable file
8 lines
101 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
mkdir -p build
|
|
cd build
|
|
cmake -G "CodeBlocks - Unix Makefiles" ..
|
|
make -j4
|
|
cd ..
|