mirror of https://github.com/axmolengine/axmol.git
18 lines
165 B
CMake
18 lines
165 B
CMake
|
set(TOLUA_SRC
|
||
|
tolua_event.c
|
||
|
tolua_is.c
|
||
|
tolua_map.c
|
||
|
tolua_push.c
|
||
|
tolua_to.c
|
||
|
)
|
||
|
|
||
|
include_directories(
|
||
|
../lua
|
||
|
)
|
||
|
|
||
|
|
||
|
add_library(tolua STATIC
|
||
|
${TOLUA_SRC}
|
||
|
)
|
||
|
|