mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
7 lines
185 B
Bash
7 lines
185 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cmake --no-warn-unused-cli -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release
|
||
|
cmake --build build-cmake --config Release --
|
||
|
|
||
|
(cd build-cmake && cpack -G External)
|