Files
Eule/INCLUDE/generate.sh
2022-01-20 22:25:22 +01:00

9 lines
227 B
Bash

# Build the include files
echo "Building the include files..."
deggl -i ../Eule/*.cpp -o Eule
# Verify that they compile cleanly
echo "Verifying that they compile"
g++ Eule.cpp -c -S -o - -Wall -Wextra -Wpedantic > /dev/null