feat: c++20 support, and compiler macros for appname and title

This commit is contained in:
hexlocation 2025-02-08 11:07:30 +00:00
parent 0ff2dae233
commit d0f6bb3480
2 changed files with 9 additions and 4 deletions

View file

@ -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