author | nemo |
Thu, 24 May 2018 09:51:11 -0400 | |
changeset 13402 | 13be6de7860f |
parent 11659 | 71bdf987e41f |
permissions | -rw-r--r-- |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
1 |
#this file is included only when system Lua library is not found |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
2 |
|
3697 | 3 |
file(GLOB lua_src *.c *.h) |
2822 | 4 |
|
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
5 |
if(WIN32) |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
6 |
add_definitions(-DLUA_BUILD_AS_DLL) |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
7 |
else(WIN32) |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
5171
diff
changeset
|
8 |
add_definitions(-DLUA_USE_LINUX) |
9205
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
9 |
add_definitions(-fvisibility=default) #TODO: fixme |
2822 | 10 |
endif(WIN32) |
11 |
||
9205
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
12 |
add_library(lua ${lua_src}) |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
13 |
|
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
14 |
set_target_properties(lua PROPERTIES |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
15 |
VERSION "5.1.4" |
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
16 |
SOVERSION 1 |
9213 | 17 |
OUTPUT_NAME ${lua_output_name}) |
9205
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
18 |
install(TARGETS lua RUNTIME DESTINATION ${target_binary_install_dir} |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
19 |
LIBRARY DESTINATION ${target_library_install_dir} |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
20 |
ARCHIVE DESTINATION ${target_library_install_dir}) |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
21 |
get_target_property(lua_fullpath lua LOCATION) |
abce6011f86c
aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents:
8316
diff
changeset
|
22 |
|
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
23 |
set(LUA_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "Lua include dir" FORCE) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
24 |
set(LUA_LIBRARY ${lua_fullpath} CACHE STRING "Lua library" FORCE) |
2822 | 25 |
|
11659
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
10015
diff
changeset
|
26 |
#emscripten does not expose headers but has an internal binary copy |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
10015
diff
changeset
|
27 |
if(BUILD_ENGINE_JS) |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
10015
diff
changeset
|
28 |
set(LUA_LIBRARY "lua_emscripten_internal" CACHE STRING "Lua library" FORCE) |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
10015
diff
changeset
|
29 |
endif() |
2822 | 30 |