Added 'src' to build.py's INCLUDES

This commit is contained in:
rxi
2016-10-15 14:44:20 +01:00
parent 889b167a6b
commit 98800f0a73

View File

@@ -11,7 +11,7 @@ TEMPSRC_DIR = ".tempsrc"
CFLAGS = [ "-O2", "-Wall", "-s", "-Wno-misleading-indentation" ]
DLIBS = [ "m" ]
DEFINES = [ "DMT_ABORT_NULL", "LUA_COMPAT_ALL" ]
INCLUDES = [ TEMPSRC_DIR ]
INCLUDES = [ "src", TEMPSRC_DIR ]
def fmt(fmt, var):