2021-04-21 14:05:44 +08:00
|
|
|
|
2021-06-08 20:45:55 +08:00
|
|
|
project(thirdparty)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
if(NOT APPLE)
|
|
|
|
set(OPT_ALSOFT_DEFAULT ON)
|
|
|
|
else()
|
|
|
|
set(OPT_ALSOFT_DEFAULT OFF)
|
|
|
|
endif()
|
|
|
|
|
2021-08-13 13:54:18 +08:00
|
|
|
option(OPT_BOX2D_OPTIMIZED "" OFF)
|
2021-07-08 22:39:08 +08:00
|
|
|
option(BUILD_DEP_BOX2D "Build with internal Box2D support" ON)
|
|
|
|
option(BUILD_DEP_CHIPMUNK "Build with internal chipmunk support" ON)
|
|
|
|
option(BUILD_DEP_FREETYPE "Build with internal freetype support" ON)
|
|
|
|
option(BUILD_DEP_RECAST "Build with internal recast support" ON)
|
|
|
|
option(BUILD_DEP_BULLET "Build with internal bullet support" ON)
|
|
|
|
option(BUILD_DEP_JPEG "Build with internal jpeg support" ON)
|
|
|
|
option(BUILD_DEP_OPENSSL "Build with internal openssl support" ON)
|
|
|
|
option(BUILD_DEP_WEBP "Build with internal webp support" ON)
|
|
|
|
option(BUILD_DEP_PUGIXML "Build with internal pugixml support" ON)
|
|
|
|
option(BUILD_DEP_CLIPPER "Build with internal clipper support" ON)
|
|
|
|
option(BUILD_DEP_CONVERTUTF "Build with internal ConvertUTF support" ON)
|
|
|
|
option(BUILD_DEP_POLY2TRI "Build with internal poly2tri support" ON)
|
|
|
|
option(BUILD_DEP_ZLIB "Build with internal zlib support" ON)
|
|
|
|
option(BUILD_DEP_CURL "Build with internal curl support" ON)
|
|
|
|
option(BUILD_DEP_UNZIP "Build with internal unzip support" ON)
|
|
|
|
option(BUILD_DEP_ASTC "Build with internal ASTC support" ON)
|
|
|
|
option(BUILD_DEP_ALSOFT "Build with internal openal-soft support" ${OPT_ALSOFT_DEFAULT})
|
|
|
|
option(BUILD_DEP_CARES "Build with internal c-ares support" OFF)
|
2021-06-24 12:33:07 +08:00
|
|
|
option(BUILD_DEP_LLHTTP "Build with lhttp support" ON)
|
2021-07-08 22:39:08 +08:00
|
|
|
option(BUILD_DEP_YAML_CPP "Build with yaml-cpp support" OFF)
|
|
|
|
option(BUILD_DEP_KCP "Build with internal kcp support" OFF)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-08-11 19:27:58 +08:00
|
|
|
# by default, enable ios,macOS openal-soft framework for legal license LGPL-2.1
|
|
|
|
option(ALSOFT_OSX_FRAMEWORK "" ON)
|
|
|
|
|
2020-11-16 14:47:43 +08:00
|
|
|
set(ANDROID_SHARED_LOADS "" CACHE INTERNAL "The android shared libraries load source code" )
|
|
|
|
set(ANDROID_SHARED_LOAD_FILE_NAME "SharedLoader.java" CACHE INTERNAL "The android shared load java file name" )
|
|
|
|
set(ANDROID_SHARED_LOAD_FILE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/${ANDROID_SHARED_LOAD_FILE_NAME}.in" CACHE INTERNAL "The android shared libraries load config code file" )
|
|
|
|
|
|
|
|
# cmake_policy(SET CMP0079 NEW)
|
|
|
|
|
2021-04-28 12:43:51 +08:00
|
|
|
function(configure_target_outdir target)
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
2021-06-08 20:45:55 +08:00
|
|
|
FOLDER "ThirdParty"
|
2021-04-28 12:43:51 +08:00
|
|
|
)
|
2021-06-09 12:28:33 +08:00
|
|
|
endfunction()
|
2021-04-28 12:43:51 +08:00
|
|
|
|
2020-11-16 14:47:43 +08:00
|
|
|
if(NOT DEFINED LUA_ENGINE)
|
|
|
|
set(LUA_ENGINE "plainlua" CACHE INTERNAL "The lua core lib, luajit or plainlua")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(LUA_ENGINE STREQUAL "plainlua")
|
|
|
|
if(NOT DEFINED LUA_VERSION)
|
2021-10-08 16:15:33 +08:00
|
|
|
set(LUA_VERSION "5.4.3" CACHE INTERNAL "The plainlua version")
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
|
|
|
message(STATUS "Using plainlua: ${LUA_VERSION}")
|
|
|
|
elseif(LUA_ENGINE STREQUAL "luajit")
|
|
|
|
message(STATUS "Using luajit")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Invalid lua engine: ${LUA_ENGINE}, must be plainlua or luajit")
|
|
|
|
endif()
|
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
add_library(thirdparty STATIC empty.cpp)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-12-29 12:22:59 +08:00
|
|
|
# header only libs
|
2021-12-29 13:44:39 +08:00
|
|
|
target_include_directories(thirdparty
|
2022-01-11 18:04:50 +08:00
|
|
|
INTERFACE "robin-map/include"
|
2021-12-29 12:22:59 +08:00
|
|
|
)
|
2021-12-29 11:52:09 +08:00
|
|
|
|
2021-12-29 19:27:27 +08:00
|
|
|
if (ANDROID)
|
|
|
|
target_include_directories(thirdparty
|
|
|
|
INTERFACE "jni.hpp/include"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-04-28 12:43:51 +08:00
|
|
|
if(MACOSX OR ANDROID OR WINDOWS)
|
|
|
|
add_subdirectory(zlib)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty
|
2021-04-28 12:43:51 +08:00
|
|
|
ext_zlib
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_BOX2D)
|
2020-11-16 14:47:43 +08:00
|
|
|
set(BOX2D_BUILD_UNIT_TESTS OFF CACHE BOOL "Build the Box2D unit tests" FORCE)
|
|
|
|
set(BOX2D_BUILD_TESTBED OFF CACHE BOOL "Build the Box2D testbed" FORCE)
|
2021-08-13 13:54:18 +08:00
|
|
|
if(OPT_BOX2D_OPTIMIZED)
|
|
|
|
add_subdirectory(box2d-optimized)
|
|
|
|
configure_target_outdir(box2d-optimized)
|
|
|
|
target_link_libraries(thirdparty box2d-optimized)
|
|
|
|
else()
|
|
|
|
add_subdirectory(box2d)
|
|
|
|
configure_target_outdir(box2d)
|
|
|
|
target_link_libraries(thirdparty box2d)
|
|
|
|
endif()
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_BOX2D)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_CHIPMUNK)
|
2020-11-16 14:47:43 +08:00
|
|
|
set(CP_BUILD_SHARED OFF CACHE BOOL "Build chipmunk as shared library" FORCE)
|
|
|
|
set(CP_BUILD_STATIC ON CACHE BOOL "Build chipmunk as static library" FORCE)
|
|
|
|
set(CP_BUILD_DEMOS OFF CACHE BOOL "Build chipmunk demos" FORCE)
|
|
|
|
set(CP_INSTALL_STATIC OFF CACHE BOOL "Install chipmunk static" FORCE)
|
|
|
|
add_subdirectory(chipmunk)
|
|
|
|
set_target_properties(chipmunk PROPERTIES
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/chipmunk/include"
|
|
|
|
)
|
|
|
|
|
2021-07-09 10:42:36 +08:00
|
|
|
# !important adxe not use double precision
|
2020-11-16 14:47:43 +08:00
|
|
|
target_compile_definitions(chipmunk PUBLIC CP_USE_CGTYPES=0)
|
|
|
|
target_compile_definitions(chipmunk PUBLIC CP_USE_DOUBLES=0)
|
|
|
|
|
|
|
|
#~ include_directories("${CMAKE_CURRENT_SOURCE_DIR}/chipmunk/include")
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty chipmunk)
|
|
|
|
configure_target_outdir(chipmunk)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_CHIPMUNK)
|
|
|
|
if(BUILD_DEP_FREETYPE)
|
2021-04-28 12:43:51 +08:00
|
|
|
set(FT_WITH_ZLIB ON CACHE BOOL "Use system zlib instead of internal library." FORCE)
|
2021-05-13 01:03:11 +08:00
|
|
|
set(DISABLE_FORCE_DEBUG_POSTFIX ON CACHE BOOL "" FORCE)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(freetype)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_include_directories(thirdparty PUBLIC "freetype/include")
|
|
|
|
target_link_libraries(thirdparty freetype)
|
2021-04-28 12:43:51 +08:00
|
|
|
configure_target_outdir(freetype)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_FREETYPE)
|
|
|
|
if(BUILD_DEP_RECAST)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(recast)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty recast)
|
|
|
|
configure_target_outdir(recast)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_RECAST)
|
|
|
|
if(BUILD_DEP_BULLET)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(bullet)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty bullet)
|
|
|
|
configure_target_outdir(bullet)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_BULLET)
|
|
|
|
if(BUILD_DEP_JPEG)
|
2021-06-08 17:32:00 +08:00
|
|
|
# set(WITH_SIMD ${CMAKE_ASM_NASM_COMPILER_LOADED} CACHE BOOL "Build TurboJPEG with simd speed up" FORCE)
|
|
|
|
# set(WITH_JPEG8 TRUE CACHE BOOL "Build libjpeg-turbo with JEPG8 API" FORCE)
|
|
|
|
# set(ENABLE_SHARED FALSE CACHE BOOL "Build shared libraries" FORCE)
|
|
|
|
# set(WITH_TURBOJPEG FALSE CACHE BOOL "Include the TurboJPEG API library and associated test programs" FORCE)
|
|
|
|
# set(JTURBO_ENABLE_INSTALL FALSE CACHE BOOL "Enable libjpeg-turbo install" FORCE)
|
|
|
|
# set(JTURBO_BUILD_TESTS FALSE CACHE BOOL "Build TurboJPEG tests and examples" FORCE)
|
|
|
|
# set(JTURBO_BUILD_BINARIES FALSE CACHE BOOL "Build TurboJPEG binaries" FORCE)
|
|
|
|
# set(WITH_CRT_DLL TRUE CACHE BOOL "Build TurboJPEG with crt dll" FORCE)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(jpeg)
|
2021-06-08 17:32:00 +08:00
|
|
|
# configure_target_outdir(jpeg)
|
|
|
|
# configure_target_outdir(simd)
|
|
|
|
# if(TARGET simd-objs)
|
|
|
|
# configure_target_outdir(simd-objs)
|
|
|
|
# endif()
|
|
|
|
# if(TARGET jsimdcfg)
|
|
|
|
# configure_target_outdir(jsimdcfg)
|
|
|
|
# endif()
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty ext_jpeg)
|
|
|
|
# target_include_directories(thirdparty INTERFACE
|
2021-06-08 17:32:00 +08:00
|
|
|
# "${CMAKE_CURRENT_LIST_DIR}/jpeg"
|
|
|
|
# "${JPEG_CONFIG_OUT_DIR}")
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_JPEG)
|
|
|
|
if(BUILD_DEP_OPENSSL)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(openssl)
|
|
|
|
if(ANDROID OR LINUX)
|
2021-04-28 15:10:28 +08:00
|
|
|
target_link_libraries(OpenSSL::SSL INTERFACE OpenSSL::Crypto)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty OpenSSL::SSL)
|
2020-11-16 14:47:43 +08:00
|
|
|
else()
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty OpenSSL::Crypto OpenSSL::SSL)
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
2021-12-16 11:14:39 +08:00
|
|
|
target_compile_definitions(thirdparty PUBLIC OPENSSL_SUPPRESS_DEPRECATED=1)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_OPENSSL)
|
|
|
|
if(BUILD_DEP_WEBP)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(webp)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty webp)
|
|
|
|
configure_target_outdir(webp)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_WEBP)
|
|
|
|
if(BUILD_DEP_PUGIXML)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(pugixml)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty pugixml)
|
|
|
|
configure_target_outdir(pugixml)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_PUGIXML)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-06-24 00:04:29 +08:00
|
|
|
add_subdirectory(xxhash)
|
|
|
|
target_link_libraries(thirdparty xxhash)
|
|
|
|
configure_target_outdir(xxhash)
|
|
|
|
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(lz4)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty lz4)
|
|
|
|
configure_target_outdir(lz4)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_CLIPPER)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(clipper)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty clipper)
|
|
|
|
configure_target_outdir(clipper)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_CLIPPER)
|
|
|
|
if(BUILD_DEP_CONVERTUTF)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(ConvertUTF)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty ConvertUTF)
|
|
|
|
configure_target_outdir(ConvertUTF)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_CONVERTUTF)
|
|
|
|
if(BUILD_DEP_POLY2TRI)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(poly2tri)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty poly2tri)
|
|
|
|
configure_target_outdir(poly2tri)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_POLY2TRI)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_ASTC)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(astc)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty astc)
|
|
|
|
configure_target_outdir(astc)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_ASTC)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
# use lua/js specific libs by property to prevent conflict
|
|
|
|
if(BUILD_LUA_LIBS)
|
|
|
|
add_subdirectory(lua/${LUA_ENGINE})
|
|
|
|
add_subdirectory(lua/tolua)
|
2021-07-16 11:17:34 +08:00
|
|
|
add_subdirectory(lua/lua-cjson)
|
2021-06-08 20:45:55 +08:00
|
|
|
set_property(TARGET thirdparty APPEND PROPERTY
|
2021-07-16 11:17:34 +08:00
|
|
|
CC_LUA_DEPEND ${LUA_ENGINE} tolua lua-cjson
|
2020-11-16 14:47:43 +08:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT LINUX)
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_CURL)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(curl)
|
2021-08-23 20:38:52 +08:00
|
|
|
if(ANDROID OR LINUX)
|
|
|
|
target_link_libraries(libcurl INTERFACE OpenSSL::SSL)
|
|
|
|
endif()
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty libcurl)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_CURL)
|
2020-11-16 14:47:43 +08:00
|
|
|
endif(NOT LINUX)
|
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
add_subdirectory(android-specific/cpufeatures)
|
2021-06-08 20:45:55 +08:00
|
|
|
# target_link_libraries(thirdparty
|
2020-11-16 14:47:43 +08:00
|
|
|
# cpufeatures
|
|
|
|
# )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# The openal-soft(LGPL 2.1)
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_ALSOFT)
|
2021-04-28 12:43:51 +08:00
|
|
|
set(ALSOFT_DLOPEN OFF CACHE BOOL "Check for the dlopen API for loading optional libs" FORCE)
|
|
|
|
set(ALSOFT_UTILS OFF CACHE BOOL "Build utility program" FORCE)
|
|
|
|
set(ALSOFT_EXAMPLES OFF CACHE BOOL "Build example programs" FORCE)
|
|
|
|
set(ALSOFT_INSTALL OFF CACHE BOOL "Install main library" FORCE)
|
2021-05-14 10:16:55 +08:00
|
|
|
add_subdirectory(openal EXCLUDE_FROM_ALL)
|
2021-04-28 12:43:51 +08:00
|
|
|
configure_target_outdir(common)
|
|
|
|
configure_target_outdir(OpenAL)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty
|
2021-04-28 12:43:51 +08:00
|
|
|
OpenAL
|
2020-11-16 14:47:43 +08:00
|
|
|
)
|
2021-08-08 14:35:30 +08:00
|
|
|
target_compile_definitions(thirdparty PUBLIC CC_USE_ALSOFT=1)
|
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
set(ANDROID_SHARED_LOADS "${ANDROID_SHARED_LOADS}System.loadLibrary(\"openal\");" CACHE INTERNAL "Android Shared Loads" )
|
|
|
|
endif()
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# The ogg decoder
|
|
|
|
add_subdirectory(ogg)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty ogg)
|
|
|
|
configure_target_outdir(ogg)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
if(WINDOWS OR LINUX)
|
|
|
|
add_subdirectory(glad)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty glad)
|
|
|
|
configure_target_outdir(glad)
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WINDOWS OR MACOSX OR LINUX)
|
2021-04-28 12:43:51 +08:00
|
|
|
set(GLFW_BUILD_DOCS OFF CACHE BOOL "Build the GLFW documentation" FORCE)
|
|
|
|
set(GLFW_INSTALL OFF CACHE BOOL "Build the GLFW documentation" FORCE)
|
|
|
|
add_subdirectory(glfw)
|
|
|
|
configure_target_outdir(glfw)
|
2021-05-18 21:30:42 +08:00
|
|
|
set_target_properties(glfw PROPERTIES
|
|
|
|
OUTPUT_NAME glfw)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty glfw)
|
2021-04-28 12:43:51 +08:00
|
|
|
if(NOT WINDOWS)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty pthread)
|
2021-04-28 12:43:51 +08:00
|
|
|
endif()
|
2021-06-08 20:45:55 +08:00
|
|
|
target_include_directories(thirdparty PUBLIC "glfw/include/GLFW")
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT LINUX)
|
|
|
|
add_subdirectory(png)
|
|
|
|
target_include_directories(png PRIVATE "zlib/include")
|
|
|
|
if(ANDROID)
|
|
|
|
target_include_directories(png PRIVATE ${cpufeatures_include_dir})
|
|
|
|
target_link_libraries(png INTERFACE cpufeatures)
|
|
|
|
endif()
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty png)
|
|
|
|
configure_target_outdir(png)
|
2020-11-16 14:47:43 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# unzip depend on zlib
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_UNZIP)
|
2020-11-16 14:47:43 +08:00
|
|
|
add_subdirectory(unzip)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty unzip)
|
|
|
|
configure_target_outdir(unzip)
|
2021-07-08 22:39:08 +08:00
|
|
|
endif(BUILD_DEP_UNZIP)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_CARES)
|
2020-11-16 14:47:43 +08:00
|
|
|
set(CARES_STATIC ON CACHE BOOL "Build c-ares as static library" FORCE)
|
|
|
|
set(CARES_SHARED OFF CACHE BOOL "Build c-ares as shared library" FORCE)
|
|
|
|
set(CARES_BUILD_TOOLS OFF CACHE BOOL "Build c-ares tools" FORCE)
|
|
|
|
set(CARES_INSTALL OFF CACHE BOOL "Create installation targets (chain builders may want to disable this)" FORCE)
|
|
|
|
add_subdirectory(c-ares)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty c-ares)
|
2020-11-16 14:47:43 +08:00
|
|
|
include_directories($<TARGET_FILE_DIR:c-ares>)
|
|
|
|
include_directories("c-ares/include")
|
2021-04-28 12:43:51 +08:00
|
|
|
configure_target_outdir(c-ares)
|
2021-07-08 22:39:08 +08:00
|
|
|
target_compile_definitions(thirdparty PUBLIC YASIO_HAVE_CARES=1)
|
|
|
|
endif(BUILD_DEP_CARES)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
2021-06-15 12:43:01 +08:00
|
|
|
if(BUILD_DEP_LLHTTP)
|
|
|
|
add_subdirectory(llhttp)
|
|
|
|
configure_target_outdir(llhttp)
|
|
|
|
target_link_libraries(thirdparty llhttp)
|
|
|
|
endif()
|
|
|
|
|
2021-12-29 11:25:42 +08:00
|
|
|
# yaml
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_YAML_CPP)
|
|
|
|
set(YAML_CPP_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
|
|
set(YAML_CPP_BUILD_TOOLS OFF CACHE BOOL "" FORCE)
|
|
|
|
set(YAML_CPP_BUILD_CONTRIB OFF CACHE BOOL "" FORCE)
|
|
|
|
set(YAML_CPP_INSTALL OFF CACHE BOOL "" FORCE)
|
2021-07-08 22:55:33 +08:00
|
|
|
set(YAML_CPP_CLANG_FORMAT_EXE OFF CACHE BOOL "" FORCE)
|
2021-07-08 22:39:08 +08:00
|
|
|
# set(YAML_BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE)
|
|
|
|
add_subdirectory(yaml-cpp)
|
|
|
|
configure_target_outdir(yaml-cpp)
|
|
|
|
# target_link_libraries(thirdparty yaml-cpp)
|
|
|
|
endif()
|
|
|
|
|
2021-12-29 11:25:42 +08:00
|
|
|
# kcp
|
2021-07-08 22:39:08 +08:00
|
|
|
if(BUILD_DEP_KCP)
|
|
|
|
add_subdirectory(kcp)
|
|
|
|
configure_target_outdir(kcp)
|
|
|
|
target_link_libraries(thirdparty kcp)
|
|
|
|
target_compile_definitions(thirdparty PUBLIC YASIO_HAVE_KCP=1)
|
|
|
|
endif()
|
|
|
|
|
2022-01-11 18:04:50 +08:00
|
|
|
# fmt-lib
|
|
|
|
add_subdirectory(fmt)
|
|
|
|
target_link_libraries(thirdparty fmt-header-only)
|
|
|
|
configure_target_outdir(fmt)
|
|
|
|
|
2021-06-08 20:45:55 +08:00
|
|
|
# put "thirdparty" into thirdparty folder, too
|
|
|
|
configure_target_outdir(thirdparty)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
if(MACOSX OR IOS)
|
|
|
|
add_subdirectory(glsl-optimizer)
|
2021-06-08 20:45:55 +08:00
|
|
|
target_link_libraries(thirdparty
|
2020-11-16 14:47:43 +08:00
|
|
|
ext_glcpp_library
|
|
|
|
ext_glsl_optimizer
|
|
|
|
ext_libmesa
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (ANDROID)
|
|
|
|
function(config_android_shared_libs package_name target_folder)
|
|
|
|
string(REPLACE "." "/" package_path ${package_name})
|
|
|
|
set(ANDROID_PACKAGE_NAME ${package_name})
|
|
|
|
configure_file(${ANDROID_SHARED_LOAD_FILE_PATH} ${target_folder}/${package_path}/${ANDROID_SHARED_LOAD_FILE_NAME} @ONLY)
|
|
|
|
endfunction()
|
|
|
|
endif()
|