CMakeLists.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. # SPDX-FileCopyrightText: 2018 yuzu Emulator Project
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. cmake_minimum_required(VERSION 3.22)
  4. # Dynarmic has cmake_minimum_required(3.12) and we may want to override
  5. # some of its variables, which is only possible in 3.13+
  6. set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
  7. list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules")
  8. list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules")
  9. list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/find-modules")
  10. include(DownloadExternals)
  11. include(CMakeDependentOption)
  12. project(yuzu)
  13. # Set bundled sdl2/qt as dependent options.
  14. # OFF by default, but if ENABLE_SDL2 and MSVC are true then ON
  15. option(ENABLE_SDL2 "Enable the SDL2 frontend" ON)
  16. CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" ON "ENABLE_SDL2;MSVC" OFF)
  17. # On Linux system SDL2 is likely to be lacking HIDAPI support which have drawbacks but is needed for SDL motion
  18. CMAKE_DEPENDENT_OPTION(YUZU_USE_EXTERNAL_SDL2 "Compile external SDL2" ON "ENABLE_SDL2;NOT MSVC" OFF)
  19. option(ENABLE_OPENGL "Enable OpenGL" ON)
  20. mark_as_advanced(FORCE ENABLE_OPENGL)
  21. option(ENABLE_QT "Enable the Qt frontend" ON)
  22. option(ENABLE_QT6 "Allow usage of Qt6 to be attempted" OFF)
  23. set(QT6_LOCATION "" CACHE PATH "Additional Location to search for Qt6 libraries like C:/Qt/6.3.1/msvc2019_64/")
  24. option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF)
  25. CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" "${MSVC}" "ENABLE_QT" OFF)
  26. option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
  27. option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" "${WIN32}")
  28. option(YUZU_USE_QT_MULTIMEDIA "Use QtMultimedia for Camera" OFF)
  29. option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF)
  30. option(ENABLE_CUBEB "Enables the cubeb audio backend" ON)
  31. option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF)
  32. option(YUZU_TESTS "Compile tests" ON)
  33. option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON)
  34. CMAKE_DEPENDENT_OPTION(YUZU_CRASH_DUMPS "Compile Windows crash dump (Minidump) support" OFF "WIN32" OFF)
  35. option(YUZU_USE_BUNDLED_VCPKG "Use vcpkg for yuzu dependencies" "${MSVC}")
  36. option(YUZU_CHECK_SUBMODULES "Check if submodules are present" ON)
  37. CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF)
  38. if (YUZU_USE_BUNDLED_VCPKG)
  39. if (YUZU_TESTS)
  40. list(APPEND VCPKG_MANIFEST_FEATURES "yuzu-tests")
  41. endif()
  42. if (YUZU_CRASH_DUMPS)
  43. list(APPEND VCPKG_MANIFEST_FEATURES "dbghelp")
  44. endif()
  45. include(${CMAKE_SOURCE_DIR}/externals/vcpkg/scripts/buildsystems/vcpkg.cmake)
  46. elseif(NOT "$ENV{VCPKG_TOOLCHAIN_FILE}" STREQUAL "")
  47. # Disable manifest mode (use vcpkg classic mode) when using a custom vcpkg installation
  48. option(VCPKG_MANIFEST_MODE "")
  49. include("$ENV{VCPKG_TOOLCHAIN_FILE}")
  50. endif()
  51. if (YUZU_USE_PRECOMPILED_HEADERS)
  52. if (MSVC AND CCACHE)
  53. # buildcache does not properly cache PCH files, leading to compilation errors.
  54. # See https://github.com/mbitsnbites/buildcache/discussions/230
  55. message(WARNING "buildcache does not properly support Precompiled Headers. Disabling PCH")
  56. set(DYNARMIC_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE)
  57. set(YUZU_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE)
  58. endif()
  59. endif()
  60. if (YUZU_USE_PRECOMPILED_HEADERS)
  61. message(STATUS "Using Precompiled Headers.")
  62. set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON)
  63. endif()
  64. # Default to a Release build
  65. get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
  66. if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE)
  67. set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
  68. message(STATUS "Defaulting to a Release build")
  69. endif()
  70. if(EXISTS ${PROJECT_SOURCE_DIR}/hooks/pre-commit AND NOT EXISTS ${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit)
  71. if (EXISTS ${PROJECT_SOURCE_DIR}/.git/)
  72. message(STATUS "Copying pre-commit hook")
  73. file(COPY hooks/pre-commit DESTINATION ${PROJECT_SOURCE_DIR}/.git/hooks)
  74. endif()
  75. endif()
  76. # Sanity check : Check that all submodules are present
  77. # =======================================================================
  78. function(check_submodules_present)
  79. file(READ "${PROJECT_SOURCE_DIR}/.gitmodules" gitmodules)
  80. string(REGEX MATCHALL "path *= *[^ \t\r\n]*" gitmodules ${gitmodules})
  81. foreach(module ${gitmodules})
  82. string(REGEX REPLACE "path *= *" "" module ${module})
  83. if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git")
  84. message(FATAL_ERROR "Git submodule ${module} not found. "
  85. "Please run: \ngit submodule update --init --recursive")
  86. endif()
  87. endforeach()
  88. endfunction()
  89. if(EXISTS ${PROJECT_SOURCE_DIR}/.gitmodules AND YUZU_CHECK_SUBMODULES)
  90. check_submodules_present()
  91. endif()
  92. configure_file(${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.qrc
  93. ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc
  94. COPYONLY)
  95. if (EXISTS ${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json)
  96. configure_file("${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json"
  97. "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json"
  98. COPYONLY)
  99. endif()
  100. if (ENABLE_COMPATIBILITY_LIST_DOWNLOAD AND NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
  101. message(STATUS "Downloading compatibility list for yuzu...")
  102. file(DOWNLOAD
  103. https://api.yuzu-emu.org/gamedb/
  104. "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" SHOW_PROGRESS)
  105. endif()
  106. if (NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
  107. file(WRITE ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json "")
  108. endif()
  109. # Detect current compilation architecture and create standard definitions
  110. # =======================================================================
  111. include(CheckSymbolExists)
  112. function(detect_architecture symbol arch)
  113. if (NOT DEFINED ARCHITECTURE)
  114. set(CMAKE_REQUIRED_QUIET 1)
  115. check_symbol_exists("${symbol}" "" ARCHITECTURE_${arch})
  116. unset(CMAKE_REQUIRED_QUIET)
  117. # The output variable needs to be unique across invocations otherwise
  118. # CMake's crazy scope rules will keep it defined
  119. if (ARCHITECTURE_${arch})
  120. set(ARCHITECTURE "${arch}" PARENT_SCOPE)
  121. set(ARCHITECTURE_${arch} 1 PARENT_SCOPE)
  122. add_definitions(-DARCHITECTURE_${arch}=1)
  123. endif()
  124. endif()
  125. endfunction()
  126. if (NOT ENABLE_GENERIC)
  127. if (MSVC)
  128. detect_architecture("_M_AMD64" x86_64)
  129. detect_architecture("_M_IX86" x86)
  130. detect_architecture("_M_ARM" arm)
  131. detect_architecture("_M_ARM64" arm64)
  132. else()
  133. detect_architecture("__x86_64__" x86_64)
  134. detect_architecture("__i386__" x86)
  135. detect_architecture("__arm__" arm)
  136. detect_architecture("__aarch64__" arm64)
  137. endif()
  138. endif()
  139. if (NOT DEFINED ARCHITECTURE)
  140. set(ARCHITECTURE "GENERIC")
  141. set(ARCHITECTURE_GENERIC 1)
  142. add_definitions(-DARCHITECTURE_GENERIC=1)
  143. endif()
  144. message(STATUS "Target architecture: ${ARCHITECTURE}")
  145. if (UNIX)
  146. add_definitions(-DYUZU_UNIX=1)
  147. endif()
  148. # Configure C++ standard
  149. # ===========================
  150. # boost asio's concept usage doesn't play nicely with some compilers yet.
  151. add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS)
  152. if (MSVC)
  153. add_compile_options($<$<COMPILE_LANGUAGE:CXX>:/std:c++latest>)
  154. # boost still makes use of deprecated result_of.
  155. add_definitions(-D_HAS_DEPRECATED_RESULT_OF)
  156. else()
  157. set(CMAKE_CXX_STANDARD 20)
  158. set(CMAKE_CXX_STANDARD_REQUIRED ON)
  159. endif()
  160. # Output binaries to bin/
  161. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
  162. # System imported libraries
  163. # =======================================================================
  164. find_package(enet 1.3)
  165. find_package(fmt 9 REQUIRED)
  166. find_package(inih)
  167. find_package(libusb 1.0.24)
  168. find_package(lz4 REQUIRED)
  169. find_package(nlohmann_json 3.8 REQUIRED)
  170. find_package(Opus 1.3)
  171. find_package(Vulkan 1.3.238)
  172. find_package(ZLIB 1.2 REQUIRED)
  173. find_package(zstd 1.5 REQUIRED)
  174. if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64)
  175. find_package(xbyak 6)
  176. endif()
  177. if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64)
  178. find_package(dynarmic 6.4.0)
  179. endif()
  180. if (ENABLE_CUBEB)
  181. find_package(cubeb)
  182. endif()
  183. if (USE_DISCORD_PRESENCE)
  184. find_package(DiscordRPC)
  185. endif()
  186. if (ENABLE_WEB_SERVICE)
  187. find_package(cpp-jwt 1.4)
  188. find_package(httplib 0.11)
  189. endif()
  190. if (YUZU_TESTS)
  191. find_package(Catch2 2.13.7 REQUIRED)
  192. endif()
  193. find_package(Boost 1.73.0 COMPONENTS context)
  194. if (Boost_FOUND)
  195. set(Boost_LIBRARIES Boost::boost)
  196. # Conditionally add Boost::context only if the found Boost package provides it
  197. # The old version is missing Boost::context, so we want to avoid adding in that case
  198. # The new version requires adding Boost::context to prevent linking issues
  199. if (TARGET Boost::context)
  200. list(APPEND Boost_LIBRARIES Boost::context)
  201. endif()
  202. else()
  203. message(FATAL_ERROR "Boost 1.73.0 or newer not found")
  204. endif()
  205. # boost:asio has functions that require AcceptEx et al
  206. if (MINGW)
  207. find_library(MSWSOCK_LIBRARY mswsock REQUIRED)
  208. endif()
  209. # Please consider this as a stub
  210. if(ENABLE_QT6 AND Qt6_LOCATION)
  211. list(APPEND CMAKE_PREFIX_PATH "${Qt6_LOCATION}")
  212. endif()
  213. function(set_yuzu_qt_components)
  214. # Best practice is to ask for all components at once, so they are from the same version
  215. set(YUZU_QT_COMPONENTS2 Core Widgets Concurrent)
  216. if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
  217. list(APPEND YUZU_QT_COMPONENTS2 DBus)
  218. endif()
  219. if (YUZU_USE_QT_MULTIMEDIA)
  220. list(APPEND YUZU_QT_COMPONENTS2 Multimedia)
  221. endif()
  222. if (YUZU_USE_QT_WEB_ENGINE)
  223. list(APPEND YUZU_QT_COMPONENTS2 WebEngineCore WebEngineWidgets)
  224. endif()
  225. if (ENABLE_QT_TRANSLATION)
  226. list(APPEND YUZU_QT_COMPONENTS2 LinguistTools)
  227. endif()
  228. set(YUZU_QT_COMPONENTS ${YUZU_QT_COMPONENTS2} PARENT_SCOPE)
  229. endfunction(set_yuzu_qt_components)
  230. # Qt5 requires that we find components, so it doesn't fit our pretty little find package function
  231. if(ENABLE_QT)
  232. set(QT_VERSION 5.15)
  233. # These are used to specify minimum versions
  234. set(QT5_VERSION 5.15)
  235. set(QT6_VERSION 6.3.1)
  236. set_yuzu_qt_components()
  237. if (ENABLE_QT6)
  238. find_package(Qt6 ${QT6_VERSION} COMPONENTS ${YUZU_QT_COMPONENTS})
  239. endif()
  240. if (Qt6_FOUND)
  241. message(STATUS "yuzu/CMakeLists.txt: Qt6Widgets_VERSION ${Qt6Widgets_VERSION}, setting QT_VERSION")
  242. set(QT_VERSION ${Qt6Widgets_VERSION})
  243. set(QT_MAJOR_VERSION 6)
  244. # Qt6 sets cxx_std_17 and we need to undo that
  245. set_target_properties(Qt6::Platform PROPERTIES INTERFACE_COMPILE_FEATURES "")
  246. else()
  247. message(STATUS "yuzu/CMakeLists.txt: Qt6 not found/not selected, trying for Qt5")
  248. # When Qt6 partially found, need this set to use Qt5 when not specifying version
  249. set(QT_DEFAULT_MAJOR_VERSION 5)
  250. set(QT_MAJOR_VERSION 5)
  251. set(YUZU_USE_QT_MULTIMEDIA ON)
  252. # Check for system Qt on Linux, fallback to bundled Qt
  253. if (UNIX AND NOT APPLE)
  254. if (NOT YUZU_USE_BUNDLED_QT)
  255. find_package(Qt5 ${QT5_VERSION} COMPONENTS Widgets DBus Multimedia)
  256. endif()
  257. if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND (NOT Qt5_FOUND OR YUZU_USE_BUNDLED_QT))
  258. # Check for dependencies, then enable bundled Qt download
  259. # Check that the system GLIBCXX version is compatible
  260. find_program(OBJDUMP objdump)
  261. if (NOT OBJDUMP)
  262. message(FATAL_ERROR "Required program `objdump` not found.")
  263. endif()
  264. find_library(LIBSTDCXX libstdc++.so.6)
  265. execute_process(
  266. COMMAND
  267. ${OBJDUMP} -T ${LIBSTDCXX}
  268. COMMAND
  269. grep GLIBCXX_3.4.28
  270. COMMAND
  271. sed "s/[0-9a-f]*.* //"
  272. COMMAND
  273. sed "s/ .*//"
  274. COMMAND
  275. sort -u
  276. OUTPUT_VARIABLE
  277. GLIBCXX_MET
  278. )
  279. if (NOT GLIBCXX_MET)
  280. message(FATAL_ERROR "Qt too old or not found, and bundled Qt package is not \
  281. compatible with this system. Either install Qt ${QT_VERSION}, or provide the path \
  282. to Qt by setting the variable Qt5_ROOT.")
  283. endif()
  284. # Check for headers
  285. find_package(PkgConfig REQUIRED)
  286. pkg_check_modules(QT_DEP_GLU QUIET glu>=9.0.0)
  287. if (NOT QT_DEP_GLU_FOUND)
  288. message(FATAL_ERROR "Qt bundled pacakge dependency `glu` not found. \
  289. Perhaps `libglu1-mesa-dev` needs to be installed?")
  290. endif()
  291. pkg_check_modules(QT_DEP_MESA QUIET dri>=20.0.8)
  292. if (NOT QT_DEP_MESA_FOUND)
  293. message(FATAL_ERROR "Qt bundled pacakge dependency `dri` not found. \
  294. Perhaps `mesa-common-dev` needs to be installed?")
  295. endif()
  296. # Check for X libraries
  297. set(BUNDLED_QT_REQUIREMENTS
  298. libxcb-icccm.so.4
  299. libxcb-image.so.0
  300. libxcb-keysyms.so.1
  301. libxcb-randr.so.0
  302. libxcb-render-util.so.0
  303. libxcb-render.so.0
  304. libxcb-shape.so.0
  305. libxcb-shm.so.0
  306. libxcb-sync.so.1
  307. libxcb-xfixes.so.0
  308. libxcb-xinerama.so.0
  309. libxcb-xkb.so.1
  310. libxcb.so.1
  311. libxkbcommon-x11.so.0
  312. libxkbcommon.so.0
  313. )
  314. set(UNRESOLVED_QT_DEPS "")
  315. foreach (REQUIREMENT ${BUNDLED_QT_REQUIREMENTS})
  316. find_library(BUNDLED_QT_${REQUIREMENT} ${REQUIREMENT})
  317. if (NOT BUNDLED_QT_${REQUIREMENT})
  318. set(UNRESOLVED_QT_DEPS ${UNRESOLVED_QT_DEPS} ${REQUIREMENT})
  319. endif()
  320. unset(BUNDLED_QT_${REQUIREMENT})
  321. endforeach()
  322. unset(BUNDLED_QT_REQUIREMENTS)
  323. if (NOT "${UNRESOLVED_QT_DEPS}" STREQUAL "")
  324. message(FATAL_ERROR "Bundled Qt package missing required dependencies: ${UNRESOLVED_QT_DEPS}")
  325. endif()
  326. set(YUZU_USE_BUNDLED_QT ON CACHE BOOL "Download bundled Qt" FORCE)
  327. endif()
  328. if (YUZU_USE_BUNDLED_QT)
  329. # Binary package currently does not support Qt webengine, so make sure it's disabled
  330. set(YUZU_USE_QT_WEB_ENGINE OFF CACHE BOOL "Use Qt Webengine" FORCE)
  331. endif()
  332. endif()
  333. set(YUZU_QT_NO_CMAKE_SYSTEM_PATH)
  334. if(YUZU_USE_BUNDLED_QT)
  335. if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64)
  336. set(QT_BUILD qt-5.15.2-msvc2019_64)
  337. elseif ((${CMAKE_SYSTEM_NAME} STREQUAL "Linux") AND NOT MINGW AND ARCHITECTURE_x86_64)
  338. set(QT_BUILD qt5_5_15_2)
  339. else()
  340. message(FATAL_ERROR "No bundled Qt binaries for your toolchain. Disable YUZU_USE_BUNDLED_QT and provide your own.")
  341. endif()
  342. if (DEFINED QT_BUILD)
  343. download_bundled_external("qt/" ${QT_BUILD} QT_PREFIX)
  344. endif()
  345. set(QT_PREFIX_HINT HINTS "${QT_PREFIX}")
  346. set(YUZU_QT_NO_CMAKE_SYSTEM_PATH "NO_CMAKE_SYSTEM_PATH")
  347. # Binary package for Qt5 has Qt Multimedia
  348. set(YUZU_USE_QT_MULTIMEDIA ON CACHE BOOL "Use Qt Multimedia" FORCE)
  349. endif()
  350. set_yuzu_qt_components()
  351. find_package(Qt5 ${QT5_VERSION} COMPONENTS ${YUZU_QT_COMPONENTS} ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH})
  352. endif()
  353. endif()
  354. # find SDL2 exports a bunch of variables that are needed, so its easier to do this outside of the yuzu_find_package
  355. if (ENABLE_SDL2)
  356. if (YUZU_USE_BUNDLED_SDL2)
  357. # Detect toolchain and platform
  358. if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64)
  359. set(SDL2_VER "SDL2-2.0.18")
  360. else()
  361. message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.")
  362. endif()
  363. if (DEFINED SDL2_VER)
  364. download_bundled_external("sdl2/" ${SDL2_VER} SDL2_PREFIX)
  365. endif()
  366. set(SDL2_FOUND YES)
  367. set(SDL2_INCLUDE_DIR "${SDL2_PREFIX}/include" CACHE PATH "Path to SDL2 headers")
  368. set(SDL2_LIBRARY "${SDL2_PREFIX}/lib/x64/SDL2.lib" CACHE PATH "Path to SDL2 library")
  369. set(SDL2_DLL_DIR "${SDL2_PREFIX}/lib/x64/" CACHE PATH "Path to SDL2.dll")
  370. add_library(SDL2::SDL2 INTERFACE IMPORTED)
  371. target_link_libraries(SDL2::SDL2 INTERFACE "${SDL2_LIBRARY}")
  372. target_include_directories(SDL2::SDL2 INTERFACE "${SDL2_INCLUDE_DIR}")
  373. elseif (YUZU_USE_EXTERNAL_SDL2)
  374. message(STATUS "Using SDL2 from externals.")
  375. else()
  376. find_package(SDL2 2.0.18 REQUIRED)
  377. endif()
  378. endif()
  379. # Reexport some targets that are named differently when using the upstream CmakeConfig
  380. # In order to ALIAS targets to a new name, they first need to be IMPORTED_GLOBAL
  381. # Dynarmic checks for target `boost` and so we want to make sure it can find it through our system instead of using their external
  382. if (TARGET Boost::boost)
  383. set_target_properties(Boost::boost PROPERTIES IMPORTED_GLOBAL TRUE)
  384. add_library(boost ALIAS Boost::boost)
  385. endif()
  386. # List of all FFmpeg components required
  387. set(FFmpeg_COMPONENTS
  388. avcodec
  389. avutil
  390. swscale)
  391. if (UNIX AND NOT APPLE)
  392. find_package(PkgConfig REQUIRED)
  393. pkg_check_modules(LIBVA libva)
  394. endif()
  395. if (NOT YUZU_USE_BUNDLED_FFMPEG)
  396. # Use system installed FFmpeg
  397. find_package(FFmpeg 4.3 REQUIRED QUIET COMPONENTS ${FFmpeg_COMPONENTS})
  398. endif()
  399. # Prefer the -pthread flag on Linux.
  400. set(THREADS_PREFER_PTHREAD_FLAG ON)
  401. find_package(Threads REQUIRED)
  402. # Platform-specific library requirements
  403. # ======================================
  404. if (APPLE)
  405. # Umbrella framework for everything GUI-related
  406. find_library(COCOA_LIBRARY Cocoa)
  407. set(PLATFORM_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY})
  408. elseif (WIN32)
  409. # WSAPoll and SHGetKnownFolderPath (AppData/Roaming) didn't exist before WinNT 6.x (Vista)
  410. add_definitions(-D_WIN32_WINNT=0x0600 -DWINVER=0x0600)
  411. set(PLATFORM_LIBRARIES winmm ws2_32 iphlpapi)
  412. if (MINGW)
  413. # PSAPI is the Process Status API
  414. set(PLATFORM_LIBRARIES ${PLATFORM_LIBRARIES} psapi imm32 version)
  415. endif()
  416. if (YUZU_CRASH_DUMPS)
  417. find_library(DBGHELP_LIBRARY dbghelp)
  418. if ("${DBGHELP_LIBRARY}" STREQUAL "DBGHELP_LIBRARY-NOTFOUND")
  419. message(FATAL_ERROR "YUZU_CRASH_DUMPS enabled but dbghelp library not found")
  420. endif()
  421. endif()
  422. elseif (CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$")
  423. set(PLATFORM_LIBRARIES rt)
  424. endif()
  425. # Setup a custom clang-format target (if clang-format can be found) that will run
  426. # against all the src files. This should be used before making a pull request.
  427. # =======================================================================
  428. set(CLANG_FORMAT_POSTFIX "-12")
  429. find_program(CLANG_FORMAT
  430. NAMES clang-format${CLANG_FORMAT_POSTFIX}
  431. clang-format
  432. PATHS ${PROJECT_BINARY_DIR}/externals)
  433. # if find_program doesn't find it, try to download from externals
  434. if (NOT CLANG_FORMAT)
  435. if (WIN32 AND NOT CMAKE_CROSSCOMPILING)
  436. message(STATUS "Clang format not found! Downloading...")
  437. set(CLANG_FORMAT "${PROJECT_BINARY_DIR}/externals/clang-format${CLANG_FORMAT_POSTFIX}.exe")
  438. file(DOWNLOAD
  439. https://github.com/yuzu-emu/ext-windows-bin/raw/master/clang-format${CLANG_FORMAT_POSTFIX}.exe
  440. "${CLANG_FORMAT}" SHOW_PROGRESS
  441. STATUS DOWNLOAD_SUCCESS)
  442. if (NOT DOWNLOAD_SUCCESS EQUAL 0)
  443. message(WARNING "Could not download clang format! Disabling the clang format target")
  444. file(REMOVE ${CLANG_FORMAT})
  445. unset(CLANG_FORMAT)
  446. endif()
  447. else()
  448. message(WARNING "Clang format not found! Disabling the clang format target")
  449. endif()
  450. endif()
  451. if (CLANG_FORMAT)
  452. set(SRCS ${PROJECT_SOURCE_DIR}/src)
  453. set(CCOMMENT "Running clang format against all the .h and .cpp files in src/")
  454. if (WIN32)
  455. add_custom_target(clang-format
  456. COMMAND powershell.exe -Command "Get-ChildItem '${SRCS}/*' -Include *.cpp,*.h -Recurse | Foreach {&'${CLANG_FORMAT}' -i $_.fullname}"
  457. COMMENT ${CCOMMENT})
  458. elseif(MINGW)
  459. add_custom_target(clang-format
  460. COMMAND find `cygpath -u ${SRCS}` -iname *.h -o -iname *.cpp | xargs `cygpath -u ${CLANG_FORMAT}` -i
  461. COMMENT ${CCOMMENT})
  462. else()
  463. add_custom_target(clang-format
  464. COMMAND find ${SRCS} -iname *.h -o -iname *.cpp | xargs ${CLANG_FORMAT} -i
  465. COMMENT ${CCOMMENT})
  466. endif()
  467. unset(SRCS)
  468. unset(CCOMMENT)
  469. endif()
  470. # Include source code
  471. # ===================
  472. # This function should be passed a list of all files in a target. It will automatically generate
  473. # file groups following the directory hierarchy, so that the layout of the files in IDEs matches the
  474. # one in the filesystem.
  475. function(create_target_directory_groups target_name)
  476. # Place any files that aren't in the source list in a separate group so that they don't get in
  477. # the way.
  478. source_group("Other Files" REGULAR_EXPRESSION ".")
  479. get_target_property(target_sources "${target_name}" SOURCES)
  480. foreach(file_name IN LISTS target_sources)
  481. get_filename_component(dir_name "${file_name}" PATH)
  482. # Group names use '\' as a separator even though the entire rest of CMake uses '/'...
  483. string(REPLACE "/" "\\" group_name "${dir_name}")
  484. source_group("${group_name}" FILES "${file_name}")
  485. endforeach()
  486. endfunction()
  487. # Prevent boost from linking against libs when building
  488. add_definitions(-DBOOST_ERROR_CODE_HEADER_ONLY
  489. -DBOOST_SYSTEM_NO_LIB
  490. -DBOOST_DATE_TIME_NO_LIB
  491. -DBOOST_REGEX_NO_LIB
  492. )
  493. # Adjustments for MSVC + Ninja
  494. if (MSVC AND CMAKE_GENERATOR STREQUAL "Ninja")
  495. add_compile_options(
  496. /wd4464 # relative include path contains '..'
  497. /wd4711 # function 'function' selected for automatic inline expansion
  498. /wd4820 # 'bytes' bytes padding added after construct 'member_name'
  499. )
  500. endif()
  501. if (YUZU_USE_FASTER_LD AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
  502. # We will assume that if the compiler is GCC, it will attempt to use ld.bfd by default.
  503. # Try to pick a faster linker.
  504. find_program(LLD lld)
  505. find_program(MOLD mold)
  506. if (MOLD AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12.1")
  507. message(NOTICE "Selecting mold as linker")
  508. add_link_options("-fuse-ld=mold")
  509. elseif (LLD)
  510. message(NOTICE "Selecting lld as linker")
  511. add_link_options("-fuse-ld=lld")
  512. endif()
  513. endif()
  514. enable_testing()
  515. add_subdirectory(externals)
  516. add_subdirectory(src)
  517. # Set yuzu project or yuzu-cmd project as default StartUp Project in Visual Studio depending on whether QT is enabled or not
  518. if(ENABLE_QT)
  519. set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu)
  520. else()
  521. set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu-cmd)
  522. endif()
  523. # Installation instructions
  524. # =========================
  525. # Install freedesktop.org metadata files, following those specifications:
  526. # https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
  527. # https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
  528. # https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html
  529. # https://www.freedesktop.org/software/appstream/docs/
  530. if(ENABLE_QT AND UNIX AND NOT APPLE)
  531. install(FILES "dist/org.yuzu_emu.yuzu.desktop"
  532. DESTINATION "share/applications")
  533. install(FILES "dist/yuzu.svg"
  534. DESTINATION "share/icons/hicolor/scalable/apps"
  535. RENAME "org.yuzu_emu.yuzu.svg")
  536. install(FILES "dist/org.yuzu_emu.yuzu.xml"
  537. DESTINATION "share/mime/packages")
  538. install(FILES "dist/org.yuzu_emu.yuzu.metainfo.xml"
  539. DESTINATION "share/metainfo")
  540. endif()