diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-11 15:32:06 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-11 15:32:06 -0400 |
commit | f9aff3e20795be5ee76769fb3ecc461e9917a116 (patch) | |
tree | 84f874996201df0e22cbc81f78a777d4b1fd08f7 /Makefile | |
parent | 982605ee21941358080b9e20c9b9b2c2006f2d6a (diff) |
added font loading code, untested
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -36,14 +36,15 @@ OBJEXT = o DEPEXT = d LIBDIR = lib -LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit -lGLEW -lGL -lSDL2_image -lSOIL +LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -lluajit -ldl -lGLEW -lGL \ + -lSDL2_image -lSOIL -lfreetype CXXFLAGS = -ggdb -std=c++17 -Wall -Wextra -Werror -pedantic \ -Wno-class-memaccess -Wno-implicit-fallthrough -m64 CXXINCS = -Isrc -I$(LIBDIR)/LuaJIT/src -I$(LIBDIR)/entityx \ - -I$(LIBDIR)/LuaBridge/Source -I$(LIBDIR)/sol2/include -I$(LIBDIR)/soil \ - -I$(LIBDIR)/cereal/include + -I$(LIBDIR)/LuaBridge/Source -I$(LIBDIR)/sol2/include \ + -I$(LIBDIR)/soil -I$(LIBDIR)/cereal/include -I$(LIBDIR)/freetype CXXSRC := $(shell find $(SRCDIR) -type f -name *.$(SRCEXT)) CXXOBJ := $(patsubst $(SRCDIR)/%,$(OUTDIR)/%,$(CXXSRC:.$(SRCEXT)=.$(OBJEXT))) |