Renamed a class and added examples to readme

This commit is contained in:
Leonetienne
2021-12-06 03:30:02 +01:00
parent 183646179a
commit 8fd5a1f20c
7 changed files with 37 additions and 932 deletions

View File

@@ -1,7 +1,8 @@
# Compile single-header
deggl -i ../GhettoCrypt/*.cpp --out GhettoCipher --loc --license-file ../LICENSE
deggl -i ../GhettoCrypt/*.cpp --out GhettoCrypt --loc --license-file ../LICENSE
# Verify that this builds cleanly via g++
echo "Verifying build..."
g++ GhettoCipher.cpp -c -S -o - -Wall > /dev/null
g++ GhettoCrypt.cpp -c -S -o - -Wall > /dev/null
echo "If you saw no compiler errors, everything's good!"