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