2017-05-28 09:33:14 +03:00
|
|
|
# Definitions for all external bundled libraries
|
|
|
|
|
2017-09-09 20:24:13 +03:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
include(DownloadExternals)
|
|
|
|
|
2017-05-28 08:46:59 +03:00
|
|
|
# Catch
|
|
|
|
add_library(catch-single-include INTERFACE)
|
|
|
|
target_include_directories(catch-single-include INTERFACE catch/single_include)
|
|
|
|
|
2018-01-10 00:33:46 +03:00
|
|
|
# Dynarmic
|
|
|
|
if (ARCHITECTURE_x86_64)
|
|
|
|
add_library(xbyak INTERFACE)
|
|
|
|
set(DYNARMIC_TESTS OFF)
|
|
|
|
set(DYNARMIC_NO_BUNDLED_FMT ON)
|
|
|
|
add_subdirectory(dynarmic)
|
|
|
|
endif()
|
|
|
|
|
2017-05-28 09:33:14 +03:00
|
|
|
# libfmt
|
|
|
|
add_subdirectory(fmt)
|
2018-04-02 21:49:58 +03:00
|
|
|
add_library(fmt::fmt ALIAS fmt)
|
2017-05-28 09:33:14 +03:00
|
|
|
|
|
|
|
# getopt
|
|
|
|
if (MSVC)
|
|
|
|
add_subdirectory(getopt)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Glad
|
|
|
|
add_subdirectory(glad)
|
|
|
|
|
|
|
|
# inih
|
|
|
|
add_subdirectory(inih)
|
|
|
|
|
2017-09-24 18:04:55 +03:00
|
|
|
# lz4
|
|
|
|
set(LZ4_BUNDLED_MODE ON)
|
2018-08-08 01:40:49 +03:00
|
|
|
add_subdirectory(lz4/contrib/cmake_unofficial EXCLUDE_FROM_ALL)
|
2017-09-24 18:04:55 +03:00
|
|
|
target_include_directories(lz4_static INTERFACE ./lz4/lib)
|
|
|
|
|
2018-07-28 06:55:23 +03:00
|
|
|
# mbedtls
|
2018-08-07 01:38:38 +03:00
|
|
|
add_subdirectory(mbedtls EXCLUDE_FROM_ALL)
|
2018-07-28 06:55:23 +03:00
|
|
|
target_include_directories(mbedtls PUBLIC ./mbedtls/include)
|
|
|
|
|
2017-05-28 09:33:14 +03:00
|
|
|
# MicroProfile
|
|
|
|
add_library(microprofile INTERFACE)
|
|
|
|
target_include_directories(microprofile INTERFACE ./microprofile)
|
|
|
|
|
2018-09-11 04:31:01 +03:00
|
|
|
# Open Source Archives
|
|
|
|
add_subdirectory(open_source_archives EXCLUDE_FROM_ALL)
|
|
|
|
|
2017-10-10 06:56:20 +03:00
|
|
|
# Unicorn
|
|
|
|
add_library(unicorn-headers INTERFACE)
|
|
|
|
target_include_directories(unicorn-headers INTERFACE ./unicorn/include)
|
|
|
|
|
2018-08-23 15:33:03 +03:00
|
|
|
# SoundTouch
|
|
|
|
add_subdirectory(soundtouch)
|
|
|
|
|
2016-12-12 01:59:28 +03:00
|
|
|
# Xbyak
|
|
|
|
if (ARCHITECTURE_x86_64)
|
2017-05-28 09:33:14 +03:00
|
|
|
# Defined before "dynarmic" above
|
2018-01-10 00:33:46 +03:00
|
|
|
# add_library(xbyak INTERFACE)
|
2017-05-28 09:33:14 +03:00
|
|
|
target_include_directories(xbyak INTERFACE ./xbyak/xbyak)
|
2017-06-17 22:20:22 +03:00
|
|
|
target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES)
|
2016-12-12 01:59:28 +03:00
|
|
|
endif()
|
2018-07-31 01:42:20 +03:00
|
|
|
|
|
|
|
# Opus
|
|
|
|
add_subdirectory(opus)
|
|
|
|
target_include_directories(opus INTERFACE ./opus/include)
|
2018-07-28 20:44:50 +03:00
|
|
|
|
|
|
|
# Cubeb
|
|
|
|
if(ENABLE_CUBEB)
|
|
|
|
set(BUILD_TESTS OFF CACHE BOOL "")
|
2018-08-07 01:38:38 +03:00
|
|
|
add_subdirectory(cubeb EXCLUDE_FROM_ALL)
|
2018-07-28 20:44:50 +03:00
|
|
|
endif()
|