diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 21:49:23 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 21:49:23 -0400 |
commit | 189afb447e2c76e5dd5e4550e786c5175a828cbc (patch) | |
tree | 9d309a927889ffc707800731f32c64407ad6cfee /Makefile | |
parent | 456ef376530fc4644732d499c862f1413b9987d9 (diff) |
add lua support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |