Browse Source
Merge pull request #9349 from lat9nq/cmake-322
CMakeLists: Bump minimum required CMake version to 3.22
pull/15/merge
Morph
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
16 additions and
5 deletions
-
CMakeLists.txt
-
externals/CMakeLists.txt
-
src/audio_core/CMakeLists.txt
-
src/input_common/CMakeLists.txt
-
src/yuzu/CMakeLists.txt
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project |
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later |
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.15) |
|
|
|
cmake_minimum_required(VERSION 3.22) |
|
|
|
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules") |
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules") |
|
|
|
|
|
|
|
@ -69,7 +69,6 @@ if (YUZU_USE_EXTERNAL_SDL2) |
|
|
|
set(SDL_SHARED OFF) |
|
|
|
|
|
|
|
add_subdirectory(SDL EXCLUDE_FROM_ALL) |
|
|
|
add_library(SDL2 ALIAS SDL2-static) |
|
|
|
endif() |
|
|
|
|
|
|
|
# ENet |
|
|
|
|
|
|
|
@ -226,6 +226,10 @@ if(ENABLE_CUBEB) |
|
|
|
target_compile_definitions(audio_core PRIVATE -DHAVE_CUBEB=1) |
|
|
|
endif() |
|
|
|
if(ENABLE_SDL2) |
|
|
|
target_link_libraries(audio_core PRIVATE SDL2) |
|
|
|
if (YUZU_USE_EXTERNAL_SDL2) |
|
|
|
target_link_libraries(audio_core PRIVATE SDL2-static) |
|
|
|
else() |
|
|
|
target_link_libraries(audio_core PRIVATE SDL2) |
|
|
|
endif() |
|
|
|
target_compile_definitions(audio_core PRIVATE HAVE_SDL2) |
|
|
|
endif() |
|
|
|
@ -55,7 +55,11 @@ if (ENABLE_SDL2) |
|
|
|
drivers/sdl_driver.cpp |
|
|
|
drivers/sdl_driver.h |
|
|
|
) |
|
|
|
target_link_libraries(input_common PRIVATE SDL2) |
|
|
|
if (YUZU_USE_EXTERNAL_SDL2) |
|
|
|
target_link_libraries(input_common PRIVATE SDL2-static) |
|
|
|
else() |
|
|
|
target_link_libraries(input_common PRIVATE SDL2) |
|
|
|
endif() |
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2) |
|
|
|
endif() |
|
|
|
|
|
|
|
|
|
|
|
@ -387,7 +387,11 @@ if (YUZU_USE_BUNDLED_QT AND QT_VERSION VERSION_LESS 6) |
|
|
|
endif() |
|
|
|
|
|
|
|
if (ENABLE_SDL2) |
|
|
|
target_link_libraries(yuzu PRIVATE SDL2) |
|
|
|
if (YUZU_USE_EXTERNAL_SDL2) |
|
|
|
target_link_libraries(yuzu PRIVATE SDL2-static) |
|
|
|
else() |
|
|
|
target_link_libraries(yuzu PRIVATE SDL2) |
|
|
|
endif() |
|
|
|
target_compile_definitions(yuzu PRIVATE HAVE_SDL2) |
|
|
|
endif() |
|
|
|
|
|
|
|
|