mirror of https://github.com/axmolengine/axmol.git
28 lines
747 B
CMake
28 lines
747 B
CMake
|
|
set(lib_name luajit)
|
|
set(target_name ${lib_name})
|
|
project(${lib_name})
|
|
|
|
include(../../cmake/AxisThirdpartyConfig.cmake)
|
|
|
|
if(WINDOWS)
|
|
add_library(${target_name} SHARED IMPORTED GLOBAL)
|
|
else()
|
|
add_library(${target_name} STATIC IMPORTED GLOBAL)
|
|
endif()
|
|
|
|
set_target_properties(${target_name} PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/include"
|
|
INTERFACE_COMPILE_DEFINITIONS USING_LUAJIT=1 # for lua-cjson
|
|
)
|
|
if(WINDOWS)
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/lua51.dll"
|
|
IMPORTED_IMPLIB "${platform_spec_path}/lua51.lib"
|
|
)
|
|
else()
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/lib${lib_name}.a"
|
|
)
|
|
endif()
|