aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-05 21:49:23 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-05 21:49:23 -0400
commit189afb447e2c76e5dd5e4550e786c5175a828cbc (patch)
tree9d309a927889ffc707800731f32c64407ad6cfee /Makefile
parent456ef376530fc4644732d499c862f1413b9987d9 (diff)
add lua support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 88cd5d7..9def519 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CXXFLAGS := -std=c++23 -O0 -g3 -ggdb \
- -Iinclude -Ientt/single_include
-LDFLAGS := -lSDL2 -lSDL2_image
+ -Iinclude -Ientt/single_include -Isol2/include `pkg-config --cflags lua5.4`
+LDFLAGS := -lSDL2 -lSDL2_image `pkg-config --libs lua5.4`
OBJS := $(subst .cpp,.o,$(wildcard *.cpp))