8 lines
79 B
Bash
8 lines
79 B
Bash
pushd build
|
|
rm -rf mac
|
|
mkdir mac
|
|
pushd mac
|
|
cmake -G Ninja ../..
|
|
ninja
|
|
popd
|
|
popd |