clarify Lua flags

closes #68
This commit is contained in:
Jan-Piet Mens 2015-11-06 11:50:55 +01:00
parent aac6725653
commit 41731dbab7

View File

@ -59,5 +59,10 @@ MOSQUITTO_INC = -I/usr/include
MOSQUITTO_LIB = -L/usr/lib
MORELIBS = # -lssl
# If WITH_LUA is configured, specify compilation and linkage flags
# for Lua either manually or using pkg-config. This may require tweaking,
# and in particular could require you to add the lua+version (e.g lua-5.2)
# to both pkg-config invocations
LUA_CFLAGS = `pkg-config --cflags lua`
LUA_LIBS = `pkg-config --libs lua`