mirror of https://github.com/axmolengine/axmol.git
31 lines
734 B
CMake
31 lines
734 B
CMake
cmake_minimum_required(VERSION 3.6)
|
|
|
|
set(lib_name zlib)
|
|
set(target_name ext_${lib_name})
|
|
|
|
project(${lib_name})
|
|
|
|
include(../cmake/CocosExternalConfig.cmake)
|
|
|
|
if(WINDOWS)
|
|
add_library(${target_name} SHARED IMPORTED GLOBAL)
|
|
else()
|
|
add_library(${target_name} STATIC IMPORTED GLOBAL)
|
|
endif()
|
|
|
|
if(MACOSX OR ANDROID)
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/libz.a"
|
|
)
|
|
elseif(WINDOWS)
|
|
set_target_properties(${target_name} PROPERTIES
|
|
IMPORTED_LOCATION "${platform_spec_path}/zlib1.dll"
|
|
IMPORTED_IMPLIB "${platform_spec_path}/libzlib.lib"
|
|
)
|
|
endif()
|
|
|
|
set_target_properties(${target_name} PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/include"
|
|
)
|
|
|