Hazelnupp/INCLUDE/generate.sh

8 lines
284 B
Bash
Raw Normal View History

2021-06-04 02:19:36 +02:00
# Build the include files
2021-06-04 02:37:46 +02:00
echo "Building the include files..."
./deggl -i ../Hazelnupp/*.cpp --license-file ../license.txt -o Hazelnupp
2021-06-04 02:19:36 +02:00
# Verify that they compile cleanly
2021-06-04 02:37:46 +02:00
echo "Verifying that they compile"
2022-02-08 09:35:21 +01:00
g++ Hazelnupp.cpp -c -S -std=c++17 -o - -Wall -Wextra -Wpedantic > /dev/null