introduce parse tokens

This commit is contained in:
vrd
2023-03-10 19:04:21 +02:00
parent 29b777e382
commit 8c5e6ba30e
4 changed files with 409 additions and 250 deletions
+3 -8
View File
@@ -1,7 +1,5 @@
#!/bin/sh
mkdir -p bin/debug
language='
-std=c++17
-fno-rtti
@@ -10,12 +8,9 @@ language='
-fno-common'
# force each global variable to be only defined once
warnings='
-Wall
-Wextra
-Wpedantic
-Wmultiple-inheritance
-Wvirtual-inheritance' #-fanalyzer
-Wextra'
g++ -o bin/debug/famt $language -g -O0 -march=native $warnings -pipe *.cpp -lncursesw
cd src
g++ -o ../tft_debug $language -g -O0 -march=native $warnings -pipe *.cpp -lncursesw