about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-09-11 13:19:36 -0400
committerCharadon <dev@iotib.net>2022-09-11 13:19:36 -0400
commit771896a49431e780e6f28c39d723113420fa56dc (patch)
tree44bcc1ff8e8ad214aec3629e589d07f9b600f967
parent264f058eaa25faf0e9c2b999705bbb01371db1c3 (diff)
downloadPong-C-771896a49431e780e6f28c39d723113420fa56dc.tar.gz
Added src/ as include directory.
-rw-r--r--Tupfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tupfile b/Tupfile
index e371864..678d8e5 100644
--- a/Tupfile
+++ b/Tupfile
@@ -1,6 +1,6 @@
 CFLAGS += `pkg-config --cflags raylib` `pkg-config --cflags glfw3` `pkg-config --cflags glu`
 CFLAGS += `pkg-config --cflags gl` `pkg-config --cflags sdl2` `pkg-config --cflags SDL2_mixer` `pkg-config --cflags bdw-gc`
-CFLAGS += -std=gnu99 -Wall -O3 -g -ggdb
+CFLAGS += -Isrc/ -std=gnu99 -Wall -O3 -g -ggdb
 LDFLAGS += `pkg-config --libs raylib` `pkg-config --libs glfw3` `pkg-config --libs glu`
 LDFLAGS += `pkg-config --libs gl` `pkg-config --libs sdl2` `pkg-config --libs SDL2_mixer`
 LDFLAGS += `pkg-config --libs bdw-gc`