user create tree

This commit is contained in:
vrd
2023-02-14 22:18:16 +02:00
parent b28cb604a2
commit 4e3816ae15
6 changed files with 83 additions and 45 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
#!/bin/sh
mkdir -p bin/debug
language='
-std=c++17
-fno-rtti
-fno-exceptions
-fno-non-call-exceptions
-fno-common'
# force each global variable to be only defined once
warnings='
-Wall
-Wextra
-Wpedantic
-Wmultiple-inheritance
-Wvirtual-inheritance' #-fanalyzer
g++ -o bin/debug/famt $language -g -O0 -march=native $warnings -pipe *.cpp -lncursesw