summaryrefslogtreecommitdiffstats
path: root/tools/pack-unix.sh
blob: cbadee4b2eb062f6f7b19dbc8e67d4b5acc9874f (plain)
1
2
3
4
5
#!/usr/bin/sh
cd $(dirname $(dirname ${0})) || exit 1
${SHELL} tools/build-unix.sh Release || exit 1
cpack --config build/unix/CPackConfig.cmake -G ZIP || exit 1
exit 0