Fix compiler issues on macos

This commit is contained in:
Leonetienne
2022-02-08 09:35:21 +01:00
parent ef90b96a3b
commit f5a7687676
5 changed files with 11 additions and 11 deletions

BIN
INCLUDE/deggl Normal file → Executable file

Binary file not shown.

4
INCLUDE/generate.sh Normal file → Executable file
View File

@@ -1,7 +1,7 @@
# Build the include files
echo "Building the include files..."
deggl -i ../Hazelnupp/*.cpp -o Hazelnupp
./deggl -i ../Hazelnupp/*.cpp -o Hazelnupp
# Verify that they compile cleanly
echo "Verifying that they compile"
g++ Hazelnupp.cpp -c -S -o - -Wall -Wextra -Wpedantic > /dev/null
g++ Hazelnupp.cpp -c -S -std=c++17 -o - -Wall -Wextra -Wpedantic > /dev/null