diff --git a/CMakeLists.txt b/CMakeLists.txt index 6505ed545..8a736eaac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules") include(DownloadExternals) include(CMakeDependentOption) +include(FindPkgConfig) project(citra LANGUAGES C CXX ASM) if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "iOS") @@ -481,12 +482,10 @@ if (ENABLE_SDL2 AND USE_SYSTEM_SDL2) endif() if (ENABLE_LIBUSB AND USE_SYSTEM_LIBUSB) - include(FindPkgConfig) find_package(LibUSB) endif() if (USE_SYSTEM_SOUNDTOUCH) - include(FindPkgConfig) find_package(SoundTouch REQUIRED) add_library(SoundTouch INTERFACE) target_link_libraries(SoundTouch INTERFACE "${SOUNDTOUCH_LIBRARIES}") diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 3ea86abfe..a36d40a4d 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -271,6 +271,7 @@ if (ENABLE_VULKAN) endif() if (NOT WIN32) + find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets) target_include_directories(citra_qt PRIVATE ${Qt6Gui_PRIVATE_INCLUDE_DIRS}) endif()