Files
tft/compile_debug.sh
T
2023-01-20 23:12:38 +02:00

13 lines
202 B
Bash
Executable File

#!/bin/dash
mkdir -p bin/debug
warnings='
-Wall
-Wextra
-Wpedantic
-Wmultiple-inheritance
-Wvirtual-inheritance' #-fanalyzer
g++ -o bin/debug/famt -std=gnu++20 -g -O0 $warnings *.cpp -lncursesw