2021-08-24 16:32:15 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
# EmulationStation Desktop Edition
|
|
|
|
# CMakeLists.txt
|
|
|
|
#
|
|
|
|
# Main CMake configuration file.
|
|
|
|
# Sets up the overall build environment including dependencies detection, build options,
|
|
|
|
# compiler and linker flags and preprocessor directives.
|
|
|
|
#
|
|
|
|
|
2020-07-07 19:33:33 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2021-04-07 16:32:22 +00:00
|
|
|
if(APPLE)
|
|
|
|
# Set this to the operating system version you're building on, and also update
|
|
|
|
# es-app/assets/EmulationStation-DE_Info.plist accordingly.
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "macOS deployment target")
|
2021-05-13 17:33:07 +00:00
|
|
|
# This optional variable is used for code signing the DMG installer.
|
|
|
|
set(MACOS_CODESIGN_IDENTITY "" CACHE STRING "macOS code signing certificate identity")
|
2021-04-07 16:32:22 +00:00
|
|
|
endif()
|
2020-06-25 17:52:38 +00:00
|
|
|
project(emulationstation-de)
|
2017-08-19 12:33:50 +00:00
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
# Set this to ON to show verbose compiler output (e.g. compiler flags, include directories etc.)
|
2020-06-24 20:20:23 +00:00
|
|
|
set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "Show verbose compiler output" FORCE)
|
|
|
|
|
2021-05-04 15:09:19 +00:00
|
|
|
# Package type to use for CPack on Linux.
|
|
|
|
set(LINUX_CPACK_GENERATOR "DEB" CACHE STRING "CPack generator, DEB or RPM")
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
# Add local find modules to the CMake path.
|
2021-09-19 16:53:20 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/CMake/Utils
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMake/Packages)
|
2020-06-25 17:52:38 +00:00
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
# Define the options.
|
2020-06-25 17:52:38 +00:00
|
|
|
option(GLES "Set to ON if targeting Embedded OpenGL" ${GLES})
|
|
|
|
option(GL "Set to ON if targeting Desktop OpenGL" ${GL})
|
2021-01-21 20:44:51 +00:00
|
|
|
option(RPI "Set to ON to enable Raspberry Pi specific build" ${RPI})
|
2020-06-25 17:52:38 +00:00
|
|
|
option(CEC "Set to ON to enable CEC" ${CEC})
|
2021-07-08 16:05:32 +00:00
|
|
|
option(VLC_PLAYER "Set to ON to build the VLC-based video player" ${VLC_PLAYER})
|
2021-07-09 17:54:54 +00:00
|
|
|
option(CLANG_TIDY "Set to ON to build using the clang-tidy static analyzer" ${CLANG_TIDY})
|
2021-11-07 22:54:52 +00:00
|
|
|
option(VIDEO_HW_DECODING "Set to OFF to disable FFmpeg HW decoding" ON)
|
2021-07-09 17:54:54 +00:00
|
|
|
|
2021-09-19 13:55:47 +00:00
|
|
|
if(CLANG_TIDY)
|
2021-07-09 19:32:47 +00:00
|
|
|
find_program(CLANG_TIDY_BINARY NAMES clang-tidy)
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CLANG_TIDY_BINARY STREQUAL "CLANG_TIDY_BINARY-NOTFOUND")
|
2021-07-09 19:32:47 +00:00
|
|
|
message("-- CLANG_TIDY was set but the clang-tidy binary was not found")
|
|
|
|
else()
|
|
|
|
message("-- Building with the clang-tidy static analyzer")
|
2021-09-19 16:53:20 +00:00
|
|
|
set(CMAKE_CXX_CLANG_TIDY "clang-tidy;-checks=*,\
|
|
|
|
-fuchsia-*,\
|
|
|
|
-hicpp-*,\
|
|
|
|
-llvm-*,\
|
|
|
|
-readability-braces-*,\
|
|
|
|
-google-readability-braces-*,\
|
|
|
|
-readability-uppercase-literal-suffix,\
|
|
|
|
-modernize-use-trailing-return-type,\
|
|
|
|
-cppcoreguidelines-avoid-magic-numbers,\
|
|
|
|
-readability-magic-numbers")
|
2021-07-09 19:32:47 +00:00
|
|
|
endif()
|
2021-07-09 17:54:54 +00:00
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
2021-01-21 20:44:51 +00:00
|
|
|
# OpenGL setup.
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(GLES)
|
2021-09-19 16:53:20 +00:00
|
|
|
set(GLSYSTEM "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
2015-01-06 20:41:00 +00:00
|
|
|
else()
|
2021-09-19 16:53:20 +00:00
|
|
|
set(GLSYSTEM "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
|
2021-07-08 16:05:32 +00:00
|
|
|
endif()
|
2017-08-19 12:33:50 +00:00
|
|
|
|
2021-09-19 16:53:20 +00:00
|
|
|
set_property(CACHE GLSYSTEM PROPERTY STRINGS "Desktop OpenGL" "Embedded OpenGL")
|
2015-01-06 20:41:00 +00:00
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Raspberry Pi setup.
|
|
|
|
|
|
|
|
# If manually set to RPI (used for testing purposes).
|
|
|
|
if(RPI)
|
|
|
|
set(VIDEO_HW_DECODING OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Raspberry Pi OS 32-bit (armv7l)
|
|
|
|
if(EXISTS "${CMAKE_FIND_ROOT_PATH}/opt/vc/include/bcm_host.h")
|
|
|
|
set(RPI ON)
|
|
|
|
set(RPI_32 ON)
|
|
|
|
set(VIDEO_HW_DECODING OFF)
|
|
|
|
set(BCMHOST found)
|
|
|
|
message("-- Building on a Raspberry Pi (32-bit OS)")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Raspberry Pi OS 64-bit (aarch64)
|
|
|
|
if(EXISTS "/usr/include/bcm_host.h")
|
|
|
|
set(RPI ON)
|
|
|
|
set(RPI_64 ON)
|
|
|
|
set(VIDEO_HW_DECODING OFF)
|
|
|
|
set(BCMHOST found)
|
|
|
|
message("-- Building on a Raspberry Pi (64-bit OS)")
|
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
2020-06-24 15:38:41 +00:00
|
|
|
# Package dependencies.
|
2021-01-21 20:44:51 +00:00
|
|
|
|
2021-09-19 16:53:20 +00:00
|
|
|
if(GLSYSTEM MATCHES "Desktop OpenGL")
|
2020-06-24 15:38:41 +00:00
|
|
|
set(OpenGL_GL_PREFERENCE "GLVND")
|
2013-05-14 19:40:21 +00:00
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
else()
|
|
|
|
find_package(OpenGLES REQUIRED)
|
|
|
|
endif()
|
2020-07-03 18:23:51 +00:00
|
|
|
|
|
|
|
# Skip package dependency checks if we're on Windows.
|
2020-07-07 19:33:33 +00:00
|
|
|
if(NOT WIN32)
|
2020-07-03 18:23:51 +00:00
|
|
|
find_package(CURL REQUIRED)
|
2021-05-09 20:52:26 +00:00
|
|
|
find_package(FFmpeg REQUIRED)
|
2020-07-03 18:23:51 +00:00
|
|
|
find_package(FreeImage REQUIRED)
|
|
|
|
find_package(Freetype REQUIRED)
|
2020-11-27 19:04:02 +00:00
|
|
|
find_package(Pugixml REQUIRED)
|
2020-07-03 18:23:51 +00:00
|
|
|
find_package(SDL2 REQUIRED)
|
2021-07-08 16:05:32 +00:00
|
|
|
if(VLC_PLAYER)
|
2021-06-22 22:24:15 +00:00
|
|
|
find_package(VLC REQUIRED)
|
|
|
|
endif()
|
2020-07-03 18:23:51 +00:00
|
|
|
endif()
|
2019-08-29 12:11:09 +00:00
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Add libCEC support.
|
2019-08-29 12:11:09 +00:00
|
|
|
if(CEC)
|
|
|
|
find_package(libCEC REQUIRED)
|
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Add ALSA for Linux.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2013-05-22 17:11:10 +00:00
|
|
|
find_package(ALSA REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
2021-01-21 20:44:51 +00:00
|
|
|
# Compiler and linker settings.
|
|
|
|
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2020-06-25 17:52:38 +00:00
|
|
|
message("-- Compiler is Clang/LLVM")
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0.0)
|
2021-09-19 13:02:13 +00:00
|
|
|
message(SEND_ERROR "You need at least Clang 5.0.0 to compile EmulationStation-DE")
|
2020-06-25 17:52:38 +00:00
|
|
|
endif()
|
2021-09-19 16:53:20 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
2020-06-25 17:52:38 +00:00
|
|
|
message("-- Compiler is GNU/GCC")
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.1)
|
2021-09-19 13:02:13 +00:00
|
|
|
message(SEND_ERROR "You need at least GCC 7.1 to compile EmulationStation-DE")
|
2020-06-25 17:52:38 +00:00
|
|
|
endif()
|
2020-07-07 19:33:33 +00:00
|
|
|
if(WIN32)
|
2020-07-03 18:23:51 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "-mwindows ${CMAKE_CXX_FLAGS}")
|
|
|
|
endif()
|
2021-09-19 16:53:20 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
2020-12-28 22:23:01 +00:00
|
|
|
message("-- Compiler is MSVC")
|
|
|
|
# If using the MSVC compiler on Windows, disable the built-in min() and max() macros.
|
|
|
|
add_definitions(-DNOMINMAX)
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
2021-09-19 13:55:47 +00:00
|
|
|
if(CMAKE_BUILD_TYPE)
|
2020-12-28 22:49:34 +00:00
|
|
|
message("-- Build type is ${CMAKE_BUILD_TYPE}")
|
|
|
|
endif()
|
2020-12-28 22:23:01 +00:00
|
|
|
|
2020-09-13 21:42:56 +00:00
|
|
|
# Set up compiler and linker flags for debug, profiling or release builds.
|
2020-07-07 19:33:33 +00:00
|
|
|
if(CMAKE_BUILD_TYPE MATCHES Debug)
|
2021-08-18 16:55:20 +00:00
|
|
|
# Enable the C++17 standard and disable optimizations as it's a debug build.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
2021-08-18 16:55:20 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17 /Od /DEBUG:FULL")
|
2020-12-28 22:23:01 +00:00
|
|
|
else()
|
2021-09-21 15:20:58 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O0 -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
|
2020-12-28 22:23:01 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O0")
|
|
|
|
endif()
|
2020-06-25 17:52:38 +00:00
|
|
|
# If using Clang, then add additional debug data needed by GDB.
|
2020-08-17 17:15:05 +00:00
|
|
|
# Comment this out if you're using LLDB for debugging as this flag makes the binary
|
2021-01-21 20:44:51 +00:00
|
|
|
# much larger and the application much slower. On macOS this setting is never enabled
|
2020-08-17 17:15:05 +00:00
|
|
|
# as LLDB is the default debugger on this OS.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(NOT APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2020-06-25 17:52:38 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_GLIBCXX_DEBUG")
|
|
|
|
endif()
|
2020-09-13 21:42:56 +00:00
|
|
|
elseif(CMAKE_BUILD_TYPE MATCHES Profiling)
|
|
|
|
# For the profiling build, we enable optimizations and supply the required profiler flags.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
2021-08-18 16:55:20 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17 /O2 /DEBUG:FULL")
|
2020-12-28 22:23:01 +00:00
|
|
|
else()
|
2021-09-21 15:20:58 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O2 -pg -g -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
|
2020-12-28 22:23:01 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2 -pg")
|
|
|
|
endif()
|
2016-11-17 20:37:44 +00:00
|
|
|
else()
|
2021-08-18 16:55:20 +00:00
|
|
|
# Enable the C++17 standard and enable optimizations as it's a release build.
|
2020-12-28 22:23:01 +00:00
|
|
|
# This will also disable all assert() macros. Strip the binary too.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
2021-08-18 16:55:20 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNDEBUG /std:c++17 /O2 /DEBUG:NONE")
|
2020-11-27 20:37:10 +00:00
|
|
|
else()
|
2021-09-21 15:20:58 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O2 -DNDEBUG -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
|
2020-12-28 22:23:01 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2")
|
|
|
|
else()
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2 -s")
|
|
|
|
endif()
|
2020-11-27 20:37:10 +00:00
|
|
|
endif()
|
2016-11-17 20:37:44 +00:00
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2020-12-28 22:23:01 +00:00
|
|
|
# The following removes half of the ranlib warnings on macOS regarding no symbols for files
|
|
|
|
# that are #ifdef'ed away. There must be a way to remove the other half as well?
|
2020-08-17 17:15:05 +00:00
|
|
|
if(APPLE)
|
|
|
|
SET(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
|
|
|
|
SET(CMAKE_CXX_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
|
|
|
|
endif()
|
|
|
|
|
2021-04-06 22:39:12 +00:00
|
|
|
if(APPLE)
|
2021-05-13 17:33:07 +00:00
|
|
|
if(MACOS_CODESIGN_IDENTITY)
|
|
|
|
message("-- Code signing certificate identity: " ${MACOS_CODESIGN_IDENTITY})
|
|
|
|
endif()
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.14)
|
2021-04-07 16:32:22 +00:00
|
|
|
message("-- macOS version 10.13 or lower has been set, so if code signing is enabled, Hardened Runtime will not be used")
|
2021-04-06 22:39:12 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Preprocessor directives.
|
|
|
|
|
2021-09-19 16:53:20 +00:00
|
|
|
if(GLSYSTEM MATCHES "Desktop OpenGL")
|
2019-08-08 20:16:11 +00:00
|
|
|
add_definitions(-DUSE_OPENGL_21)
|
2013-05-14 19:40:21 +00:00
|
|
|
else()
|
2019-08-08 20:16:11 +00:00
|
|
|
add_definitions(-DUSE_OPENGLES_10)
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(RPI)
|
|
|
|
add_definitions(-D_RPI_)
|
2021-06-22 22:24:15 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(VLC_PLAYER)
|
|
|
|
add_definitions(-DBUILD_VLC_PLAYER)
|
2021-01-21 20:44:51 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(DEFINED libCEC_FOUND)
|
|
|
|
add_definitions(-DHAVE_LIBCEC)
|
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(VIDEO_HW_DECODING)
|
|
|
|
add_definitions(-DVIDEO_HW_DECODING)
|
|
|
|
endif()
|
|
|
|
|
2021-08-15 17:30:31 +00:00
|
|
|
# GLM library options.
|
2021-08-18 16:55:20 +00:00
|
|
|
add_definitions(-DGLM_FORCE_CXX17)
|
2021-08-15 17:30:31 +00:00
|
|
|
add_definitions(-DGLM_FORCE_XYZW_ONLY)
|
|
|
|
|
2021-04-02 10:12:49 +00:00
|
|
|
# For Unix systems, assign the installation prefix. If it's not explicitly set,
|
|
|
|
# we use /usr on Linux, /usr/pkg on NetBSD and /usr/local on FreeBSD and OpenBSD.
|
2020-08-17 17:15:05 +00:00
|
|
|
if(NOT WIN32 AND NOT APPLE)
|
2021-04-02 10:12:49 +00:00
|
|
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2021-05-13 10:57:52 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr" CACHE INTERNAL "CMAKE_INSTALL_PREFIX")
|
2021-09-19 16:53:20 +00:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
2021-05-13 10:57:52 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr/pkg" CACHE INTERNAL "CMAKE_INSTALL_PREFIX")
|
2021-04-02 10:12:49 +00:00
|
|
|
else()
|
2021-05-13 10:57:52 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr/local" CACHE INTERNAL "CMAKE_INSTALL_PREFIX")
|
2021-04-02 10:12:49 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
message("-- Installation prefix is set to " ${CMAKE_INSTALL_PREFIX})
|
2020-07-03 18:23:51 +00:00
|
|
|
add_definitions(-DES_INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
endif()
|
2020-06-21 17:35:43 +00:00
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
# For Windows, set the minimum OS version to Windows 7.
|
2020-07-07 19:33:33 +00:00
|
|
|
if(WIN32)
|
2021-01-21 20:44:51 +00:00
|
|
|
add_compile_definitions(_WIN32_WINNT=0x0601)
|
|
|
|
add_compile_definitions(WINVER=0x0601)
|
2020-07-03 18:23:51 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
2021-01-21 20:44:51 +00:00
|
|
|
# Include files.
|
|
|
|
|
2021-09-19 16:53:20 +00:00
|
|
|
set(COMMON_INCLUDE_DIRS ${CURL_INCLUDE_DIR}
|
|
|
|
${FFMPEG_INCLUDE_DIRS}
|
|
|
|
${FreeImage_INCLUDE_DIRS}
|
|
|
|
${FREETYPE_INCLUDE_DIRS}
|
|
|
|
${PUGIXML_INCLUDE_DIRS}
|
|
|
|
${SDL2_INCLUDE_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/CImg
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/glm
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/nanosvg/src
|
2021-10-06 15:53:13 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/rapidjson/include
|
2021-09-19 16:53:20 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src)
|
2021-07-08 16:05:32 +00:00
|
|
|
if(VLC_PLAYER)
|
2021-06-22 22:24:15 +00:00
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS} ${VLC_INCLUDE_DIR})
|
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
# For Windows we need to add local include files for the dependency packages.
|
|
|
|
if(WIN32)
|
|
|
|
set(WIN32_INCLUDE_DIR "NOT_DEFINED" CACHE FILEPATH "")
|
|
|
|
if(NOT EXISTS ${WIN32_INCLUDE_DIR})
|
|
|
|
message(SEND_ERROR "Can't find WIN32 include directory: ${WIN32_INCLUDE_DIR}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-08-17 17:15:05 +00:00
|
|
|
# Temporary solution until the VLC find module has been updated to work properly on macOS.
|
2021-06-22 22:24:15 +00:00
|
|
|
if(APPLE AND VLC_PLAYER)
|
2021-01-21 20:44:51 +00:00
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS} "/Applications/VLC.app/Contents/MacOS/include")
|
2020-08-17 17:15:05 +00:00
|
|
|
endif()
|
|
|
|
|
2020-07-07 19:33:33 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS} ${WIN32_INCLUDE_DIR})
|
2020-07-03 18:23:51 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add libCEC include directory.
|
2017-11-08 22:22:15 +00:00
|
|
|
if(DEFINED libCEC_FOUND)
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS ${libCEC_INCLUDE_DIR})
|
2017-11-08 22:22:15 +00:00
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
# For Linux, add the ALSA include directory.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS ${ALSA_INCLUDE_DIRS})
|
2013-05-22 17:11:10 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(RPI_32)
|
2021-09-19 16:53:20 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS "${CMAKE_FIND_ROOT_PATH}/opt/vc/include"
|
|
|
|
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vcos"
|
|
|
|
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vmcs_host/linux"
|
|
|
|
"${CMAKE_FIND_ROOT_PATH}/opt/vc/include/interface/vcos/pthreads")
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Dependency libraries.
|
2013-05-16 10:04:02 +00:00
|
|
|
|
2020-08-23 09:35:02 +00:00
|
|
|
if(NOT WIN32)
|
2021-09-19 16:53:20 +00:00
|
|
|
set(COMMON_LIBRARIES ${CURL_LIBRARIES}
|
|
|
|
${FFMPEG_LIBRARIES}
|
|
|
|
${FreeImage_LIBRARIES}
|
|
|
|
${FREETYPE_LIBRARIES}
|
|
|
|
${PUGIXML_LIBRARIES}
|
|
|
|
${SDL2_LIBRARY})
|
2021-07-08 16:05:32 +00:00
|
|
|
if(VLC_PLAYER)
|
2021-06-22 22:24:15 +00:00
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${VLC_LIBRARIES})
|
|
|
|
endif()
|
2020-07-03 18:23:51 +00:00
|
|
|
elseif(WIN32)
|
2020-12-28 22:23:01 +00:00
|
|
|
if(DEFINED MSVC)
|
2021-09-19 16:53:20 +00:00
|
|
|
set(COMMON_LIBRARIES "${PROJECT_SOURCE_DIR}/avcodec.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avfilter.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avformat.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avutil.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/swresample.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/swscale.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/FreeImage.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/glew32.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libcurl-x64.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/freetype.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/pugixml.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2main.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2.lib"
|
|
|
|
"Winmm.dll")
|
2021-06-22 22:24:15 +00:00
|
|
|
if(VLC_PLAYER)
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} "${PROJECT_SOURCE_DIR}/libvlc.lib")
|
|
|
|
endif()
|
2020-12-28 22:23:01 +00:00
|
|
|
else()
|
2021-09-19 16:53:20 +00:00
|
|
|
set(COMMON_LIBRARIES "${PROJECT_SOURCE_DIR}/avcodec-58.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avfilter-7.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avformat-58.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/avutil-56.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/swresample-3.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/swscale-5.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/FreeImage.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/glew32.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libcurl-x64.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libfreetype.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libpugixml.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libSDL2main.a"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2.dll"
|
|
|
|
"mingw32"
|
|
|
|
"Winmm.dll")
|
2021-06-22 22:24:15 +00:00
|
|
|
if(VLC_PLAYER)
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} "${PROJECT_SOURCE_DIR}/libvlc.dll")
|
|
|
|
endif()
|
2020-12-28 22:23:01 +00:00
|
|
|
endif()
|
2020-07-03 18:23:51 +00:00
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2020-08-23 09:35:02 +00:00
|
|
|
if(APPLE)
|
2021-09-19 16:53:20 +00:00
|
|
|
# See es-app/CMakeLists.txt for an explation for why an extra "Resources" directory
|
2020-08-21 19:58:12 +00:00
|
|
|
# has been added to the install prefix.
|
2021-09-19 16:53:20 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "/Applications/EmulationStation Desktop Edition.app/Contents/Resources")
|
2020-08-21 19:58:12 +00:00
|
|
|
|
2021-06-22 22:24:15 +00:00
|
|
|
if(VLC_PLAYER)
|
|
|
|
# Required as the VLC find module doesn't work properly on macOS.
|
2021-09-19 16:53:20 +00:00
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} "/Applications/VLC.app/Contents/MacOS/lib/libvlc.dylib")
|
2021-06-22 22:24:15 +00:00
|
|
|
endif()
|
2020-08-23 09:35:02 +00:00
|
|
|
|
|
|
|
# Set the same rpath links for the install executable as for the build executable.
|
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
|
2021-06-26 10:06:24 +00:00
|
|
|
set(CMAKE_INSTALL_RPATH @executable_path)
|
2020-08-17 17:15:05 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add libCEC libraries.
|
2017-11-08 22:22:15 +00:00
|
|
|
if(DEFINED libCEC_FOUND)
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES dl ${libCEC_LIBRARIES})
|
2017-11-08 22:22:15 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add ALSA for Linux libraries.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES ${ALSA_LIBRARY})
|
2013-05-22 17:11:10 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
# Raspberry Pi.
|
2013-05-14 19:40:21 +00:00
|
|
|
if(DEFINED BCMHOST)
|
2021-11-07 22:54:52 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES bcm_host vchiq_arm)
|
|
|
|
if(RPI_32)
|
|
|
|
link_directories("${CMAKE_FIND_ROOT_PATH}/opt/vc/lib")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Note: Building with GLES support on the Raspberry Pi currently seems to be broken.
|
|
|
|
if(GLES AND RPI_32)
|
|
|
|
list(APPEND COMMON_LIBRARIES brcmEGL ${OPENGLES_LIBRARIES})
|
|
|
|
elseif(GLES AND RPI_64)
|
2021-07-09 17:50:59 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES ${OPENGLES_LIBRARIES})
|
2021-07-08 16:05:32 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
# OpenGL.
|
2021-09-19 16:53:20 +00:00
|
|
|
if(GLSYSTEM MATCHES "Desktop OpenGL")
|
2021-07-08 16:05:32 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES ${OPENGL_LIBRARIES})
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
2021-07-08 16:05:32 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES EGL ${OPENGLES_LIBRARIES})
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-25 17:52:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
2021-01-21 20:44:51 +00:00
|
|
|
# Build directories.
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
set(dir ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
|
|
|
|
set(LIBRARY_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
|
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Add each component.
|
2014-06-21 01:03:05 +00:00
|
|
|
add_subdirectory("es-core")
|
2014-06-25 16:29:58 +00:00
|
|
|
add_subdirectory("es-app")
|