2010-01-21 15:12:50 +00:00
#-------------------------------------------------------------------------------
2021-07-04 05:24:21 +00:00
# Search all libraries on the system
2010-01-21 15:12:50 +00:00
#-------------------------------------------------------------------------------
2015-07-27 22:54:04 +00:00
if ( EXISTS ${ PROJECT_SOURCE_DIR } /.git )
2021-07-04 05:24:21 +00:00
find_package ( Git )
2015-07-27 22:54:04 +00:00
endif ( )
2021-08-04 05:43:25 +00:00
if ( WIN32 )
# We bundle everything on Windows
add_subdirectory ( 3rdparty/zlib EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/libpng EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/libjpeg EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/libsamplerate EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/baseclasses EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/freetype EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/portaudio EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/pthreads4w EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/soundtouch EXCLUDE_FROM_ALL )
2021-07-06 18:12:40 +00:00
add_subdirectory ( 3rdparty/wil EXCLUDE_FROM_ALL )
2021-08-04 05:43:25 +00:00
add_subdirectory ( 3rdparty/wxwidgets3.0 EXCLUDE_FROM_ALL )
add_subdirectory ( 3rdparty/xz EXCLUDE_FROM_ALL )
2013-01-02 13:34:38 +00:00
else ( )
2021-08-04 05:43:25 +00:00
## Use cmake package to find module
if ( Linux )
find_package ( ALSA REQUIRED )
make_imported_target_if_missing ( ALSA::ALSA ALSA )
endif ( )
find_package ( PCAP REQUIRED )
find_package ( LibXml2 REQUIRED )
make_imported_target_if_missing ( LibXml2::LibXml2 LibXml2 )
find_package ( Freetype REQUIRED ) # GS OSD
find_package ( Gettext ) # translation tool
find_package ( LibLZMA REQUIRED )
make_imported_target_if_missing ( LibLZMA::LibLZMA LIBLZMA )
# Using find_package OpenGL without either setting your opengl preference to GLVND or LEGACY
# is deprecated as of cmake 3.11.
set ( OpenGL_GL_PREFERENCE GLVND )
find_package ( OpenGL REQUIRED )
find_package ( PNG REQUIRED )
find_package ( Vtune )
# Does not require the module (allow to compile non-wx plugins)
# Force the unicode build (the variable is only supported on cmake 2.8.3 and above)
# Warning do not put any double-quote for the argument...
# set(wxWidgets_CONFIG_OPTIONS --unicode=yes --debug=yes) # In case someone want to debug inside wx
#
# Fedora uses an extra non-standard option ... Arch must be the first option.
# They do uname -m if missing so only fix for cross compilations.
# http://pkgs.fedoraproject.org/cgit/wxGTK.git/plain/wx-config
if ( Fedora AND CMAKE_CROSSCOMPILING )
set ( wxWidgets_CONFIG_OPTIONS --arch ${ PCSX2_TARGET_ARCHITECTURES } --unicode=yes )
else ( )
set ( wxWidgets_CONFIG_OPTIONS --unicode=yes )
endif ( )
2015-01-04 00:56:50 +00:00
2021-08-04 05:43:25 +00:00
# I'm removing the version check, because it excludes newer versions and requires specifically 3.0.
#list(APPEND wxWidgets_CONFIG_OPTIONS --version=3.0)
2015-01-09 12:10:11 +00:00
2021-08-04 05:43:25 +00:00
# The wx version must be specified so a mix of gtk2 and gtk3 isn't used
# as that can cause compile errors.
if ( GTK2_API AND NOT APPLE )
list ( APPEND wxWidgets_CONFIG_OPTIONS --toolkit=gtk2 )
elseif ( NOT APPLE )
list ( APPEND wxWidgets_CONFIG_OPTIONS --toolkit=gtk3 )
endif ( )
2015-01-09 12:10:11 +00:00
2021-08-04 05:43:25 +00:00
# wx2.8 => /usr/bin/wx-config-2.8
# lib32-wx2.8 => /usr/bin/wx-config32-2.8
# wx3.0 => /usr/bin/wx-config-3.0
# I'm going to take a wild guess and predict this:
# lib32-wx3.0 => /usr/bin/wx-config32-3.0
# FindwxWidgets only searches for wx-config.
if ( CMAKE_CROSSCOMPILING )
# May need to fix the filenames for lib32-wx3.0.
if ( ${ PCSX2_TARGET_ARCHITECTURES } MATCHES "i386" )
if ( Fedora AND EXISTS "/usr/bin/wx-config-3.0" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config-3.0" )
endif ( )
if ( EXISTS "/usr/bin/wx-config32" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config32" )
endif ( )
if ( EXISTS "/usr/bin/wx-config32-3.0" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config32-3.0" )
endif ( )
endif ( )
else ( )
if ( ${ CMAKE_SYSTEM_NAME } MATCHES "FreeBSD" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/local/bin/wxgtk3u-3.0-config" )
endif ( )
if ( EXISTS "/usr/bin/wx-config-3.2" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config-3.2" )
endif ( )
if ( EXISTS "/usr/bin/wx-config-3.1" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config-3.1" )
endif ( )
if ( EXISTS "/usr/bin/wx-config-3.0" )
2021-07-04 05:24:21 +00:00
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config-3.0" )
endif ( )
2021-08-04 05:43:25 +00:00
if ( EXISTS "/usr/bin/wx-config" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config" )
2021-07-04 05:24:21 +00:00
endif ( )
2021-08-04 05:43:25 +00:00
if ( NOT GTK2_API AND EXISTS "/usr/bin/wx-config-gtk3" )
set ( wxWidgets_CONFIG_EXECUTABLE "/usr/bin/wx-config-gtk3" )
2021-07-04 05:24:21 +00:00
endif ( )
endif ( )
2021-08-04 05:43:25 +00:00
find_package ( wxWidgets REQUIRED base core adv )
include ( ${ wxWidgets_USE_FILE } )
make_imported_target_if_missing ( wxWidgets::all wxWidgets )
find_package ( ZLIB REQUIRED )
## Use pcsx2 package to find module
include ( FindLibc )
## Use pcsx2 package to find module
include ( FindPulseAudio )
## Use CheckLib package to find module
include ( CheckLib )
if ( Linux )
check_lib ( EGL EGL EGL/egl.h )
check_lib ( X11_XCB X11-xcb X11/Xlib-xcb.h )
check_lib ( XCB xcb xcb/xcb.h )
check_lib ( AIO aio libaio.h )
# There are two udev pkg config files - udev.pc (wrong), libudev.pc (correct)
# When cross compiling, pkg-config will be skipped so we have to look for
# udev (it'll automatically be prefixed with lib). But when not cross
# compiling, we have to look for libudev.pc. Argh. Hence the silliness below.
if ( CMAKE_CROSSCOMPILING )
check_lib ( LIBUDEV udev libudev.h )
else ( )
check_lib ( LIBUDEV libudev libudev.h )
endif ( )
2021-07-04 05:24:21 +00:00
endif ( )
2021-08-04 05:43:25 +00:00
if ( PORTAUDIO_API )
check_lib ( PORTAUDIO portaudio portaudio.h pa_linux_alsa.h )
2021-07-04 05:24:21 +00:00
endif ( )
2021-08-04 05:43:25 +00:00
check_lib ( SOUNDTOUCH SoundTouch SoundTouch.h PATH_SUFFIXES soundtouch )
check_lib ( SAMPLERATE samplerate samplerate.h )
2010-08-02 07:33:11 +00:00
2021-08-04 05:43:25 +00:00
if ( SDL2_API )
check_lib ( SDL2 SDL2 SDL.h PATH_SUFFIXES SDL2 )
alias_library ( SDL::SDL PkgConfig::SDL2 )
2021-07-04 05:24:21 +00:00
else ( )
2021-08-04 05:43:25 +00:00
# Tell cmake that we use SDL as a library and not as an application
set ( SDL_BUILDING_LIBRARY TRUE )
find_package ( SDL REQUIRED )
2021-07-04 05:24:21 +00:00
endif ( )
2010-06-04 17:17:55 +00:00
2021-08-04 05:43:25 +00:00
if ( UNIX AND NOT APPLE )
find_package ( X11 REQUIRED )
make_imported_target_if_missing ( X11::X11 X11 )
2021-07-04 05:24:21 +00:00
endif ( )
2021-08-04 05:43:25 +00:00
if ( UNIX )
# Most plugins (if not all) and PCSX2 core need gtk2, so set the required flags
if ( GTK2_API )
find_package ( GTK2 REQUIRED gtk )
alias_library ( GTK::gtk GTK2::gtk )
else ( )
if ( CMAKE_CROSSCOMPILING )
find_package ( GTK3 REQUIRED gtk )
alias_library ( GTK::gtk GTK3::gtk )
else ( )
check_lib ( GTK3 gtk+-3.0 gtk/gtk.h )
alias_library ( GTK::gtk PkgConfig::GTK3 )
endif ( )
endif ( )
2021-07-04 05:24:21 +00:00
endif ( )
2014-12-07 21:06:39 +00:00
2021-08-04 05:43:25 +00:00
#----------------------------------------
# Use system include
#----------------------------------------
find_package ( HarfBuzz )
endif ( WIN32 )
2019-08-24 22:50:02 +00:00
2020-08-19 08:19:28 +00:00
set ( ACTUALLY_ENABLE_TESTS ${ ENABLE_TESTS } )
if ( ENABLE_TESTS )
if ( NOT EXISTS "${CMAKE_SOURCE_DIR}/3rdparty/gtest/CMakeLists.txt" )
message ( WARNING "ENABLE_TESTS was on but gtest was not found, unit tests will not be enabled" )
set ( ACTUALLY_ENABLE_TESTS Off )
endif ( )
endif ( )
2015-01-04 19:38:36 +00:00
#----------------------------------------
# Check correctness of the parameter
# Note: wxWidgets_INCLUDE_DIRS must be defined
#----------------------------------------
include ( ApiValidation )
2017-05-21 17:23:05 +00:00
2015-01-04 19:38:36 +00:00
WX_vs_SDL ( )
2017-05-21 17:23:05 +00:00
# Blacklist bad GCC
if ( GCC_VERSION VERSION_EQUAL "7.0" OR GCC_VERSION VERSION_EQUAL "7.1" )
2021-07-04 05:24:21 +00:00
GCC7_BUG ( )
2017-05-21 17:23:05 +00:00
endif ( )
2019-06-19 04:24:23 +00:00
2019-09-22 01:00:52 +00:00
if ( ( GCC_VERSION VERSION_EQUAL "9.0" OR GCC_VERSION VERSION_GREATER "9.0" ) AND GCC_VERSION LESS "9.2" )
2021-07-04 05:24:21 +00:00
message ( WARNING "
I t l o o k s l i k e y o u a r e c o m p i l i n g w i t h 9 . 0 . x o r 9 . 1 . x . U s i n g t h e s e v e r s i o n s i s n o t r e c o m m e n d e d ,
a s t h e r e i s a b u g k n o w n t o c a u s e t h e c o m p i l e r t o s e g f a u l t w h i l e c o m p i l i n g . S e e p a t c h
h t t p s : / / g i t w e b . g e n t o o . o r g / p r o j / g c c - p a t c h e s . g i t / c o m m i t / ? i d = 2 7 5 a b 7 1 4 6 3 7 a 6 4 6 7 2 c 6 6 3 0 c f d 7 4 4 a f 2 c 7 0 9 5 7 d 5 a
E v e n w i t h t h a t p a t c h , c o m p i l i n g w i t h L T O m a y s t i l l s e g f a u l t . U s e a t y o u r o w n r i s k !
T h i s t e x t b e i n g i n a c o m p i l e l o g i n a n o p e n i s s u e m a y c a u s e i t t o b e c l o s e d . " )
2020-05-07 15:31:48 +00:00
endif ( )
2020-11-09 00:28:43 +00:00
2021-03-14 18:38:14 +00:00
find_package ( fmt "7.1.3" QUIET )
2020-11-09 00:28:43 +00:00
if ( NOT fmt_FOUND )
2021-07-04 05:24:21 +00:00
if ( EXISTS "${CMAKE_SOURCE_DIR}/3rdparty/fmt/fmt/CMakeLists.txt" )
message ( STATUS "No system fmt was found. Using bundled" )
add_subdirectory ( 3rdparty/fmt/fmt )
else ( )
message ( FATAL_ERROR "No system or bundled fmt was found" )
endif ( )
2020-11-09 00:28:43 +00:00
else ( )
2021-07-04 05:24:21 +00:00
message ( STATUS "Found fmt: ${fmt_VERSION}" )
2020-11-09 00:28:43 +00:00
endif ( )
2020-11-27 18:59:31 +00:00
2020-12-06 19:39:25 +00:00
if ( USE_SYSTEM_YAML )
2021-07-04 05:24:21 +00:00
find_package ( yaml-cpp "0.6.3" QUIET )
if ( NOT yaml-cpp_FOUND )
message ( STATUS "No system yaml-cpp was found" )
set ( USE_SYSTEM_YAML OFF )
else ( )
message ( STATUS "Found yaml-cpp: ${yaml-cpp_VERSION}" )
message ( STATUS "Note that the latest release of yaml-cpp is very outdated, and the bundled submodule in the repo has over a year of bug fixes and as such is preferred." )
endif ( )
2020-12-06 19:39:25 +00:00
endif ( )
if ( NOT USE_SYSTEM_YAML )
2021-07-04 05:24:21 +00:00
if ( EXISTS "${CMAKE_SOURCE_DIR}/3rdparty/yaml-cpp/yaml-cpp/CMakeLists.txt" )
message ( STATUS "Using bundled yaml-cpp" )
add_subdirectory ( 3rdparty/yaml-cpp/yaml-cpp EXCLUDE_FROM_ALL )
2021-08-04 05:43:25 +00:00
if ( NOT MSVC )
# Remove once https://github.com/jbeder/yaml-cpp/pull/815 is merged
target_compile_options ( yaml-cpp PRIVATE -Wno-shadow )
endif ( )
2021-07-04 05:24:21 +00:00
else ( )
message ( FATAL_ERROR "No bundled yaml-cpp was found" )
endif ( )
2020-11-27 18:59:31 +00:00
endif ( )
2020-12-25 10:25:55 +00:00
add_subdirectory ( 3rdparty/libchdr/libchdr EXCLUDE_FROM_ALL )
2021-08-02 06:55:11 +00:00
if ( USE_NATIVE_TOOLS )
add_subdirectory ( tools/bin2cpp EXCLUDE_FROM_ALL )
set ( BIN2CPP bin2cpp )
2021-09-05 01:35:43 +00:00
set ( BIN2CPPDEP bin2cpp )
2021-08-02 06:55:11 +00:00
else ( )
set ( BIN2CPP perl ${ CMAKE_SOURCE_DIR } /linux_various/hex2h.pl )
2021-09-05 01:35:43 +00:00
set ( BIN2CPPDEP ${ CMAKE_SOURCE_DIR } /linux_various/hex2h.pl )
2021-08-02 06:55:11 +00:00
endif ( )