1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:08:13 +00:00

Base: Tweak CXXFLAGS for the "little" test projects

Let's build with -std=c++2a since we're C++20 nowadays. :^)
This commit is contained in:
Andreas Kling 2020-11-05 10:02:57 +01:00
parent 575c483310
commit eed78ffa5a

View file

@ -1,6 +1,6 @@
PROGRAM = little
OBJS = main.o other.o
CXXFLAGS = -g
CXXFLAGS = -g -Os -std=c++2a
all: $(PROGRAM)