prepare for some basic lua scripting example

This commit is contained in:
Erwin Coumans
2015-05-13 09:17:59 -07:00
parent 074b869a9f
commit dbae21ae5a
68 changed files with 20797 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
INCLUDE_DIRECTORIES(
.
src
)
FILE(GLOB_RECURSE lua-5.2.3_SRCS "src/*.c")
ADD_DEFINITIONS(-DLUA_COMPAT_ALL)
FILE(GLOB_RECURSE lua-5.2.3_HDRS "src/*.h")
ADD_LIBRARY(lua-5.2.3 ${lua-5.2.3_SRCS} ${lua-5.2.3_HDRS})