mirror of https://github.com/axmolengine/axmol.git
28 lines
706 B
CMake
28 lines
706 B
CMake
set(lib_name curl)
|
|
set(target_name lib${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/"
|
|
)
|
|
|
|
if(WINDOWS)
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/lib${lib_name}.dll"
|
|
IMPORTED_IMPLIB "${platform_spec_path}/lib${lib_name}_imp.lib"
|
|
)
|
|
else()
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/lib${lib_name}.a"
|
|
)
|
|
endif()
|