17 lines
154 B
Bash
17 lines
154 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
cmake . -B target/release -DCMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build target/release
|
|
|
|
cd target/release
|
|
|
|
cpack -G "TGZ"
|
|
|
|
cd ../..
|
|
|
|
|
|
|