2022-01-06 05:24:09 +01:00
|
|
|
# Always build externals as static libraries, even when dynarmic is built as shared
|
2022-04-23 19:47:35 +02:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
endif()
|
2022-01-06 05:24:09 +01:00
|
|
|
|
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
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (NOT TARGET Catch2::Catch2)
|
|
|
|
if (DYNARMIC_TESTS)
|
|
|
|
add_library(Catch2::Catch2 INTERFACE IMPORTED GLOBAL)
|
|
|
|
target_include_directories(Catch2::Catch2 INTERFACE catch/include)
|
2022-12-26 21:49:43 +01:00
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Android")
|
|
|
|
target_link_libraries(Catch2::Catch2 INTERFACE log)
|
|
|
|
endif()
|
2022-11-22 02:42:52 +01:00
|
|
|
endif()
|
2021-08-10 16:05:38 +02:00
|
|
|
endif()
|
2020-05-21 22:31:18 +02:00
|
|
|
|
|
|
|
# fmt
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (NOT TARGET fmt::fmt)
|
2016-11-24 05:40:15 +01:00
|
|
|
# fmtlib formatting library
|
2022-11-22 02:42:52 +01:00
|
|
|
option(FMT_INSTALL "" ON)
|
|
|
|
add_subdirectory(fmt EXCLUDE_FROM_ALL)
|
2016-11-24 05:40:15 +01:00
|
|
|
endif()
|
2016-12-12 15:23:42 +01:00
|
|
|
|
2022-04-19 13:12:19 +02:00
|
|
|
# mcl
|
2020-05-21 22:31:18 +02:00
|
|
|
|
2022-04-19 13:12:19 +02:00
|
|
|
if (NOT TARGET merry::mcl)
|
2022-11-22 02:42:52 +01:00
|
|
|
option(MCL_INSTALL "" ON)
|
|
|
|
add_subdirectory(mcl EXCLUDE_FROM_ALL)
|
2022-04-19 13:12:19 +02:00
|
|
|
endif()
|
2020-05-21 22:31:18 +02:00
|
|
|
|
2022-07-10 10:35:44 +02:00
|
|
|
# oaknut
|
|
|
|
|
|
|
|
if (NOT TARGET merry::oaknut)
|
|
|
|
if (ARCHITECTURE STREQUAL "arm64")
|
2022-11-22 02:42:52 +01:00
|
|
|
add_subdirectory(oaknut EXCLUDE_FROM_ALL)
|
2022-07-10 10:35:44 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-05-21 22:31:18 +02:00
|
|
|
# robin-map
|
|
|
|
|
2021-08-10 16:05:38 +02:00
|
|
|
if (NOT TARGET tsl::robin_map)
|
2022-11-22 02:42:52 +01:00
|
|
|
add_subdirectory(robin-map EXCLUDE_FROM_ALL)
|
2021-08-10 16:05:38 +02:00
|
|
|
endif()
|
2020-05-21 22:31:18 +02:00
|
|
|
|
|
|
|
# xbyak
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (NOT TARGET xbyak::xbyak)
|
2020-06-11 14:15:13 +02:00
|
|
|
if (ARCHITECTURE STREQUAL "x86" OR ARCHITECTURE STREQUAL "x86_64")
|
2022-11-22 02:42:52 +01:00
|
|
|
add_subdirectory(xbyak EXCLUDE_FROM_ALL)
|
2016-12-12 15:23:42 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
2021-05-25 22:32:34 +02:00
|
|
|
|
|
|
|
# zydis
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (NOT TARGET Zydis::Zydis)
|
2022-11-24 16:36:55 +01:00
|
|
|
if (ARCHITECTURE STREQUAL "x86" OR ARCHITECTURE STREQUAL "x86_64")
|
|
|
|
option(ZYDIS_BUILD_TOOLS "" OFF)
|
|
|
|
option(ZYDIS_BUILD_EXAMPLES "" OFF)
|
|
|
|
option(ZYDIS_BUILD_DOXYGEN "" OFF)
|
|
|
|
set(ZYAN_ZYCORE_PATH "${CMAKE_CURRENT_LIST_DIR}/zycore" CACHE PATH "")
|
|
|
|
add_subdirectory(zydis EXCLUDE_FROM_ALL)
|
2022-11-22 02:42:52 +01:00
|
|
|
add_library(Zydis::Zydis ALIAS Zydis)
|
2022-11-24 16:36:55 +01:00
|
|
|
endif()
|
2021-08-24 12:28:44 +02:00
|
|
|
endif()
|