dynarmic/externals/CMakeLists.txt

75 lines
1.8 KiB
CMake
Raw Normal View History

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
# Allow options shadowing with normal variables when subproject use old cmake policy
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
2022-11-24 09:09:19 +01:00
# Disable tests in all externals supporting the standard option name
set(BUILD_TESTING 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.
2022-12-31 17:32:10 +01:00
# catch
if (NOT TARGET Catch2::Catch2WithMain)
if (DYNARMIC_TESTS)
add_subdirectory(catch EXCLUDE_FROM_ALL)
endif()
endif()
# fmt
2022-11-22 02:42:52 +01:00
if (NOT TARGET fmt::fmt)
# fmtlib formatting library
set(FMT_INSTALL ON)
2022-11-22 02:42:52 +01:00
add_subdirectory(fmt EXCLUDE_FROM_ALL)
endif()
# mcl
if (NOT TARGET merry::mcl)
set(MCL_INSTALL ON)
2022-11-22 02:42:52 +01:00
add_subdirectory(mcl EXCLUDE_FROM_ALL)
endif()
# oaknut
if (NOT TARGET merry::oaknut)
if ("arm64" IN_LIST ARCHITECTURE)
2022-11-22 02:42:52 +01:00
add_subdirectory(oaknut EXCLUDE_FROM_ALL)
endif()
endif()
# robin-map
if (NOT TARGET tsl::robin_map)
2022-11-22 02:42:52 +01:00
add_subdirectory(robin-map EXCLUDE_FROM_ALL)
endif()
# xbyak
2022-11-22 02:42:52 +01:00
if (NOT TARGET xbyak::xbyak)
if ("x86_64" IN_LIST ARCHITECTURE)
2022-11-22 02:42:52 +01:00
add_subdirectory(xbyak EXCLUDE_FROM_ALL)
endif()
endif()
2021-05-25 22:32:34 +02:00
# zydis
2022-11-22 02:42:52 +01:00
if (NOT TARGET Zydis::Zydis)
if ("x86_64" IN_LIST ARCHITECTURE)
set(ZYDIS_BUILD_TOOLS OFF)
set(ZYDIS_BUILD_EXAMPLES OFF)
set(ZYDIS_BUILD_DOXYGEN OFF)
set(ZYAN_ZYCORE_PATH "${CMAKE_CURRENT_LIST_DIR}/zycore" CACHE PATH "")
set(CMAKE_DISABLE_FIND_PACKAGE_Doxygen ON)
add_subdirectory(zydis EXCLUDE_FROM_ALL)
2022-11-22 02:42:52 +01:00
add_library(Zydis::Zydis ALIAS Zydis)
endif()
2021-08-24 12:28:44 +02:00
endif()