2022-01-06 05:24:09 +01:00
|
|
|
# Always build externals as static libraries, even when dynarmic is built as shared
|
|
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
|
2016-08-25 23:21:19 +02:00
|
|
|
# For libraries that already come with a CMakeLists file,
|
|
|
|
# simply add the directory to that file as a subdirectory
|
|
|
|
# to have CMake automatically recognize them.
|
|
|
|
|
2020-05-21 22:31:18 +02:00
|
|
|
# catch
|
|
|
|
|
2021-08-10 16:05:38 +02:00
|
|
|
if (DYNARMIC_TESTS AND NOT TARGET catch)
|
|
|
|
add_library(catch INTERFACE)
|
|
|
|
target_include_directories(catch INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/catch/include>)
|
|
|
|
endif()
|
2020-05-21 22:31:18 +02:00
|
|
|
|
|
|
|
# fmt
|
|
|
|
|
2021-10-11 19:42:05 +02:00
|
|
|
if (NOT TARGET fmt AND NOT TARGET fmt::fmt)
|
2016-11-24 05:40:15 +01:00
|
|
|
# fmtlib formatting library
|
|
|
|
add_subdirectory(fmt)
|
|
|
|
endif()
|
2016-12-12 15:23:42 +01:00
|
|
|
|
2020-05-21 22:31:18 +02:00
|
|
|
# mp
|
|
|
|
|
|
|
|
add_library(mp INTERFACE)
|
|
|
|
target_include_directories(mp INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/mp/include>)
|
|
|
|
|
|
|
|
# robin-map
|
|
|
|
|
2021-08-10 16:05:38 +02:00
|
|
|
if (NOT TARGET tsl::robin_map)
|
2021-10-12 10:09:21 +02:00
|
|
|
add_subdirectory(robin-map)
|
2021-08-10 16:05:38 +02:00
|
|
|
endif()
|
2020-05-21 22:31:18 +02:00
|
|
|
|
2021-03-01 21:23:52 +01:00
|
|
|
# vixl
|
|
|
|
|
2022-02-26 14:34:59 +01:00
|
|
|
if (ARCHITECTURE STREQUAL "arm64" AND NOT TARGET vixl)
|
2021-05-31 02:12:19 +02:00
|
|
|
add_subdirectory(vixl EXCLUDE_FROM_ALL)
|
2020-06-11 14:15:13 +02:00
|
|
|
endif()
|
2021-03-01 21:23:52 +01:00
|
|
|
|
2020-05-21 22:31:18 +02:00
|
|
|
# xbyak
|
|
|
|
|
2016-12-12 15:23:42 +01:00
|
|
|
if (NOT TARGET xbyak)
|
2020-06-11 14:15:13 +02:00
|
|
|
if (ARCHITECTURE STREQUAL "x86" OR ARCHITECTURE STREQUAL "x86_64")
|
2016-12-12 15:23:42 +01:00
|
|
|
add_library(xbyak INTERFACE)
|
2021-08-07 16:13:38 +02:00
|
|
|
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
|
|
|
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/xbyak/xbyak DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
|
|
|
|
target_include_directories(xbyak SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
|
2017-06-12 02:17:04 +02:00
|
|
|
target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES)
|
2016-12-12 15:23:42 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
2021-05-25 22:32:34 +02:00
|
|
|
|
|
|
|
# zydis
|
|
|
|
|
2021-08-24 12:28:44 +02:00
|
|
|
if (NOT TARGET Zydis)
|
|
|
|
option(ZYDIS_BUILD_TOOLS "" OFF)
|
|
|
|
option(ZYDIS_BUILD_EXAMPLES "" OFF)
|
|
|
|
set(ZYDIS_ZYCORE_PATH "${CMAKE_CURRENT_LIST_DIR}/zycore" CACHE PATH "")
|
|
|
|
add_subdirectory(zydis EXCLUDE_FROM_ALL)
|
|
|
|
endif()
|