feat: c++20 support, and compiler macros for appname and title
This commit is contained in:
parent
0ff2dae233
commit
d0f6bb3480
2 changed files with 9 additions and 4 deletions
5
Makefile
5
Makefile
|
@ -1,10 +1,11 @@
|
|||
BINARY=renga
|
||||
CPP=g++
|
||||
CPP=clang
|
||||
FLAGS=-lbe -std=c++20 -lstdc++
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
$(CPP) App.cpp -o $(BINARY) -lbe
|
||||
$(CPP) App.cpp -o $(BINARY) $(FLAGS)
|
||||
test: build
|
||||
./renga
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue