2021-12-06 02:58:35 +01:00
|
|
|
# Compile single-header
|
2021-12-06 03:20:02 +01:00
|
|
|
deggl -i ../GhettoCrypt/*.cpp --out GhettoCipher --loc --license-file ../LICENSE
|
2021-12-06 02:58:35 +01:00
|
|
|
|
|
|
|
# Verify that this builds cleanly via g++
|
|
|
|
echo "Verifying build..."
|
|
|
|
g++ GhettoCipher.cpp -c -S -o - -Wall > /dev/null
|
|
|
|
echo "If you saw no compiler errors, everything's good!"
|