pcsx2/cmake/SearchForStuff.cmake

137 lines
4.5 KiB
CMake
Raw Normal View History

#-------------------------------------------------------------------------------
# Search all libraries on the system
#-------------------------------------------------------------------------------
find_package(Git)
# Require threads on all OSes.
find_package(Threads REQUIRED)
# Dependency libraries.
# On macOS, Mono.framework contains an ancient version of libpng. We don't want that.
# Avoid it by telling cmake to avoid finding frameworks while we search for libpng.
set(FIND_FRAMEWORK_BACKUP ${CMAKE_FIND_FRAMEWORK})
set(CMAKE_FIND_FRAMEWORK NEVER)
find_package(PNG 1.6.40 REQUIRED)
find_package(JPEG REQUIRED) # No version because flatpak uses libjpeg-turbo.
find_package(ZLIB REQUIRED) # v1.3, but Mac uses the SDK version.
find_package(Zstd 1.5.5 REQUIRED)
find_package(LZ4 REQUIRED)
find_package(WebP REQUIRED) # v1.3.2, spews an error on Linux because no pkg-config.
2024-06-17 20:44:07 +00:00
find_package(SDL2 2.30.4 REQUIRED)
2024-04-25 06:55:51 +00:00
find_package(Freetype 2.11.1 REQUIRED)
if(USE_VULKAN)
find_package(Shaderc REQUIRED)
endif()
# Platform-specific dependencies.
2021-08-04 05:43:25 +00:00
if (WIN32)
2022-03-19 12:15:33 +00:00
add_subdirectory(3rdparty/D3D12MemAlloc EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/winpixeventruntime EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/winwil EXCLUDE_FROM_ALL)
2022-12-18 13:05:00 +00:00
set(FFMPEG_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/3rdparty/ffmpeg/include")
2021-10-12 02:48:44 +00:00
find_package(Vtune)
else()
2023-08-26 04:37:56 +00:00
find_package(CURL REQUIRED)
find_package(PCAP REQUIRED)
2021-08-04 05:43:25 +00:00
find_package(Vtune)
2022-12-18 13:05:00 +00:00
# Use bundled ffmpeg v4.x.x headers if we can't locate it in the system.
# We'll try to load it dynamically at runtime.
find_package(FFMPEG COMPONENTS avcodec avformat avutil swresample swscale)
if(NOT FFMPEG_FOUND)
2022-12-18 13:05:00 +00:00
message(WARNING "FFmpeg not found, using bundled headers.")
set(FFMPEG_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/3rdparty/ffmpeg/include")
endif()
2021-08-04 05:43:25 +00:00
## Use CheckLib package to find module
include(CheckLib)
2021-10-03 20:16:43 +00:00
if(UNIX AND NOT APPLE)
if(LINUX)
check_lib(LIBUDEV libudev libudev.h)
2021-08-04 05:43:25 +00:00
endif()
2021-10-03 20:16:43 +00:00
2023-09-16 05:01:13 +00:00
if(X11_API)
find_package(X11 REQUIRED)
if (NOT X11_Xrandr_FOUND)
message(FATAL_ERROR "XRandR extension is required")
endif()
endif()
2021-11-21 09:47:00 +00:00
if(WAYLAND_API)
find_package(ECM REQUIRED NO_MODULE)
list(APPEND CMAKE_MODULE_PATH "${ECM_MODULE_PATH}")
find_package(Wayland REQUIRED Egl)
endif()
2023-03-19 15:36:49 +00:00
if(USE_BACKTRACE)
find_package(Libbacktrace REQUIRED)
endif()
2023-09-16 05:01:13 +00:00
find_package(PkgConfig REQUIRED)
pkg_check_modules(DBUS REQUIRED dbus-1)
endif()
endif()
2021-07-08 13:13:21 +00:00
set(CMAKE_FIND_FRAMEWORK ${FIND_FRAMEWORK_BACKUP})
add_subdirectory(3rdparty/fast_float EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/rapidyaml EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/lzma EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/libchdr EXCLUDE_FROM_ALL)
disable_compiler_warnings_for_target(libchdr)
add_subdirectory(3rdparty/soundtouch EXCLUDE_FROM_ALL)
2021-09-22 07:48:03 +00:00
add_subdirectory(3rdparty/simpleini EXCLUDE_FROM_ALL)
2021-09-14 09:11:59 +00:00
add_subdirectory(3rdparty/imgui EXCLUDE_FROM_ALL)
2021-10-31 09:21:35 +00:00
add_subdirectory(3rdparty/cpuinfo EXCLUDE_FROM_ALL)
disable_compiler_warnings_for_target(cpuinfo)
2023-08-24 02:30:24 +00:00
add_subdirectory(3rdparty/libzip EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/rcheevos EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/rapidjson EXCLUDE_FROM_ALL)
add_subdirectory(3rdparty/discord-rpc EXCLUDE_FROM_ALL)
2024-04-24 12:28:02 +00:00
add_subdirectory(3rdparty/freesurround EXCLUDE_FROM_ALL)
2021-09-26 06:35:15 +00:00
if(USE_OPENGL)
add_subdirectory(3rdparty/glad EXCLUDE_FROM_ALL)
endif()
2021-11-06 06:53:01 +00:00
if(USE_VULKAN)
add_subdirectory(3rdparty/vulkan EXCLUDE_FROM_ALL)
2021-11-06 06:53:01 +00:00
endif()
2023-08-26 04:37:56 +00:00
add_subdirectory(3rdparty/cubeb EXCLUDE_FROM_ALL)
disable_compiler_warnings_for_target(cubeb)
disable_compiler_warnings_for_target(speex)
# Find the Qt components that we need.
2024-05-21 02:32:19 +00:00
# Should be 6.7.1, but held back on 6.7.0 because of Flatpak.
find_package(Qt6 6.7.0 COMPONENTS CoreTools Core GuiTools Gui WidgetsTools Widgets LinguistTools REQUIRED)
2023-08-26 04:37:56 +00:00
if(WIN32)
add_subdirectory(3rdparty/rainterface EXCLUDE_FROM_ALL)
endif()
# Demangler for the debugger.
add_subdirectory(3rdparty/demangler EXCLUDE_FROM_ALL)
# Symbol table parser.
add_subdirectory(3rdparty/ccc EXCLUDE_FROM_ALL)
2024-03-21 06:19:17 +00:00
# Architecture-specific.
if(_M_X86)
add_subdirectory(3rdparty/zydis EXCLUDE_FROM_ALL)
elseif(_M_ARM64)
add_subdirectory(3rdparty/vixl EXCLUDE_FROM_ALL)
endif()
# Prevent fmt from being built with exceptions, or being thrown at call sites.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DFMT_EXCEPTIONS=0")
2024-06-10 05:12:56 +00:00
add_subdirectory(3rdparty/fmt EXCLUDE_FROM_ALL)
# Deliberately at the end. We don't want to set the flag on third-party projects.
if(MSVC)
# Don't warn about "deprecated" POSIX functions.
2023-12-22 11:17:46 +00:00
add_definitions("-D_CRT_NONSTDC_NO_WARNINGS" "-D_CRT_SECURE_NO_WARNINGS" "-DCRT_SECURE_NO_DEPRECATE")
endif()