mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-20 18:32:28 +00:00
fixed the lua 5.2 build on windows
This commit is contained in:
parent
d92be3a6d7
commit
f70739f0cb
1 changed files with 7 additions and 2 deletions
|
@ -119,8 +119,10 @@ if(WIN32)
|
|||
if(BUNDLED_LUA)
|
||||
set(LUA_LIB "${CMAKE_CURRENT_LIST_DIR}/lua/src")
|
||||
FILE(GLOB LUA_LIB_SRC
|
||||
#core
|
||||
${LUA_LIB}/lapi.c
|
||||
${LUA_LIB}/lcode.c
|
||||
${LUA_LIB}/lctype.c
|
||||
${LUA_LIB}/ldebug.c
|
||||
${LUA_LIB}/ldo.c
|
||||
${LUA_LIB}/ldump.c
|
||||
|
@ -138,16 +140,19 @@ if(WIN32)
|
|||
${LUA_LIB}/lundump.c
|
||||
${LUA_LIB}/lvm.c
|
||||
${LUA_LIB}/lzio.c
|
||||
#lib
|
||||
${LUA_LIB}/lauxlib.c
|
||||
${LUA_LIB}/lbaselib.c
|
||||
${LUA_LIB}/lbitlib.c
|
||||
${LUA_LIB}/lcorolib.c
|
||||
${LUA_LIB}/ldblib.c
|
||||
${LUA_LIB}/liolib.c
|
||||
${LUA_LIB}/lmathlib.c
|
||||
${LUA_LIB}/loslib.c
|
||||
${LUA_LIB}/ltablib.c
|
||||
${LUA_LIB}/lstrlib.c
|
||||
${LUA_LIB}/loadlib.c
|
||||
${LUA_LIB}/ltablib.c
|
||||
${LUA_LIB}/linit.c
|
||||
${LUA_LIB}/loadlib.c
|
||||
)
|
||||
|
||||
FILE(GLOB LUA_LIB_HEADERS
|
||||
|
|
Loading…
Reference in a new issue