summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2024-05-01 15:51:40 +0200
committerRoland Reichwein <mail@reichwein.it>2024-05-01 15:51:40 +0200
commit8c344cf8fabded65cee42c69f63d2e47b9bef8d3 (patch)
treec15f1323df43782d8c410939d234be4f5a449285 /Makefile
parent16cf84958d059b7500f43dd1ba53e1ed680529a2 (diff)
First build possible
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2a8759d..fec3007 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,8 @@ OBJ=$(SRC:.cpp=.o)
all: $(PROJECTNAME)
+LDLIBS += -lfmt
+
$(PROJECTNAME): $(OBJ)
$(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@