7 lines
82 B
Bash
Executable file
7 lines
82 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
mkdir -p release
|
|
cd release
|
|
cmake -DWITH_BOOST=1 ..
|
|
make
|
|
cd ..
|