6 lines
87 B
Bash
6 lines
87 B
Bash
|
|
#!/bin/sh
|
||
|
|
if [ ! -d "build" ]; then
|
||
|
|
mkdir build
|
||
|
|
fi
|
||
|
|
cd build && cmake .. && make $*
|