cryptutils

Cryptographic Software Utilities
git clone http://git.omkov.net/cryptutils
Log | Tree | Refs | README | LICENCE | Download

cryptutils/BuildUNIX.sh (11 lines, 268 B) -rwxr-xr-x file download

a70b8cf Jamozed 2020-07-25 12:33:43
0
#!/usr/bin/env sh
a70b8cf Jamozed 2020-07-25 12:33:43
1
dir="$(dirname $(realpath "$0"))"
a70b8cf Jamozed 2020-07-25 12:33:43
2
a70b8cf Jamozed 2020-07-25 12:33:43
3
cmake -S "${dir}" -B "${dir}/build" \
a70b8cf Jamozed 2020-07-25 12:33:43
4
	-DCMAKE_BUILD_TYPE:STRING=Release \
a70b8cf Jamozed 2020-07-25 12:33:43
5
	-DCMAKE_EXPORT_COMPILE_COMMANDS=1
a70b8cf Jamozed 2020-07-25 12:33:43
6
a70b8cf Jamozed 2020-07-25 12:33:43
7
cmake --build "${dir}/build"
a70b8cf Jamozed 2020-07-25 12:33:43
8
a70b8cf Jamozed 2020-07-25 12:33:43
9
mv -f "${dir}/build/compile_commands.json" "${dir}/compile_commands.json"
10