7 lines
71 B
Bash
7 lines
71 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p build build/bin build/lib
|
|
cd build
|
|
cmake ..
|
|
make
|