misc/liblua/CMakeLists.txt
author koda
Tue, 13 Nov 2012 22:24:30 +0100
branchwebgl
changeset 8044 796f2653f21d
parent 7718 97ba379164ec
child 8330 aaefa587e277
permissions -rw-r--r--
some CMake cleanup
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
8044
796f2653f21d some CMake cleanup
koda
parents: 7718
diff changeset
     3
#TODO: when NOPASCAL=1 it should use clang here too
796f2653f21d some CMake cleanup
koda
parents: 7718
diff changeset
     4
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3244
diff changeset
     5
file(GLOB lua_src *.c *.h)
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
     6
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
     7
if(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_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
     9
    add_library(lua SHARED ${lua_src})
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    10
7262
33e703cc7a7f set(LUA_LIBRARY lua.dll) for win32 builds
unc0rr
parents: 7031
diff changeset
    11
    set(LUA_LIBRARY lua.dll)
33e703cc7a7f set(LUA_LIBRARY lua.dll) for win32 builds
unc0rr
parents: 7031
diff changeset
    12
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
    13
    set_target_properties(lua PROPERTIES PREFIX "")
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
    14
    install(TARGETS lua RUNTIME DESTINATION ${target_dir})
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
    15
else(WIN32)
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
    16
    add_definitions(-DLUA_USE_LINUX)
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 5171
diff changeset
    17
    add_library(lua STATIC ${lua_src})
7704
b25add2fdfa6 slight tweak to lua linking (that will break everything, i'm sure)
koda
parents: 7262
diff changeset
    18
    set(LUA_LIBRARY lua)
2822
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    19
endif(WIN32)
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    20
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    21
0533562bc3a4 Engine:
smxx
parents: 2812
diff changeset
    22