diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-01 00:40:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-01 00:40:44 +0100 |
commit | 1346b14befdddb07ec96fa43e781618f9c4cfba8 (patch) | |
tree | 7de76ae07f6a2abb53d821cf3ad0ab86b5554f1e /CMakeLists.txt | |
parent | Merge pull request #9862 from abouvier/cmake-components (diff) | |
parent | cmake: use correct boost imported targets (diff) | |
download | yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar.gz yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar.bz2 yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar.lz yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar.xz yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.tar.zst yuzu-1346b14befdddb07ec96fa43e781618f9c4cfba8.zip |
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a7faa1c4..f26a0c6b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -210,6 +210,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) # ======================================================================= # Enforce the search mode of non-required packages for better and shorter failure messages +find_package(Boost 1.73.0 REQUIRED context) find_package(enet 1.3 MODULE) find_package(fmt 9 REQUIRED) find_package(inih 52 MODULE COMPONENTS INIReader) @@ -253,19 +254,6 @@ if (YUZU_TESTS) find_package(Catch2 3.0.1 REQUIRED) endif() -find_package(Boost 1.73.0 COMPONENTS context) -if (Boost_FOUND) - set(Boost_LIBRARIES Boost::boost) - # Conditionally add Boost::context only if the found Boost package provides it - # The old version is missing Boost::context, so we want to avoid adding in that case - # The new version requires adding Boost::context to prevent linking issues - if (TARGET Boost::context) - list(APPEND Boost_LIBRARIES Boost::context) - endif() -else() - message(FATAL_ERROR "Boost 1.73.0 or newer not found") -endif() - # boost:asio has functions that require AcceptEx et al if (MINGW) find_library(MSWSOCK_LIBRARY mswsock REQUIRED) @@ -462,14 +450,6 @@ if (ENABLE_SDL2) endif() endif() -# Reexport some targets that are named differently when using the upstream CmakeConfig -# In order to ALIAS targets to a new name, they first need to be IMPORTED_GLOBAL -# Dynarmic checks for target `boost` and so we want to make sure it can find it through our system instead of using their external -if (TARGET Boost::boost) - set_target_properties(Boost::boost PROPERTIES IMPORTED_GLOBAL TRUE) - add_library(boost ALIAS Boost::boost) -endif() - # List of all FFmpeg components required set(FFmpeg_COMPONENTS avcodec @@ -585,11 +565,7 @@ function(create_target_directory_groups target_name) endfunction() # Prevent boost from linking against libs when building -add_definitions(-DBOOST_ERROR_CODE_HEADER_ONLY - -DBOOST_SYSTEM_NO_LIB - -DBOOST_DATE_TIME_NO_LIB - -DBOOST_REGEX_NO_LIB -) +target_link_libraries(Boost::headers INTERFACE Boost::disable_autolinking) # Adjustments for MSVC + Ninja if (MSVC AND CMAKE_GENERATOR STREQUAL "Ninja") add_compile_options( |