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