2021-08-24 16:32:15 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
2023-12-08 16:25:38 +00:00
|
|
|
# ES-DE
|
2021-08-24 16:32:15 +00:00
|
|
|
# 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)
|
2022-04-19 15:24:54 +00:00
|
|
|
# Set this to the minimum supported macOS version, and also update
|
2021-04-07 16:32:22 +00:00
|
|
|
# es-app/assets/EmulationStation-DE_Info.plist accordingly.
|
2023-07-29 14:08:40 +00:00
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 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
|
|
|
|
2022-04-19 15:48:43 +00:00
|
|
|
# Application version, update this when making a new release.
|
2023-11-13 21:33:07 +00:00
|
|
|
set(ES_VERSION 3.0.0-alpha)
|
2022-04-19 15:24:54 +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.
|
2022-04-19 15:24:54 +00:00
|
|
|
set(LINUX_CPACK_GENERATOR DEB CACHE STRING "CPack generator, DEB or RPM")
|
2021-05-04 15:09:19 +00:00
|
|
|
|
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.
|
2023-02-18 11:42:19 +00:00
|
|
|
option(GL "Set to ON if targeting Desktop OpenGL" ON)
|
|
|
|
option(GLES "Set to ON if targeting OpenGL ES" OFF)
|
|
|
|
option(APPLICATION_UPDATER "Set to OFF to build without the application updater" ON)
|
|
|
|
option(APPIMAGE_BUILD "Set to ON when building as an AppImage" OFF)
|
|
|
|
option(AUR_BUILD "Set to ON when building for the AUR" OFF)
|
|
|
|
option(FLATPAK_BUILD "Set to ON when building as a Flatpak" OFF)
|
|
|
|
option(STEAM_DECK "Set to ON to enable a Valve Steam Deck specific build" OFF)
|
|
|
|
option(RETRODECK "Set to ON to enable a RetroDECK specific build" OFF)
|
|
|
|
option(RPI "Set to ON to enable a Raspberry Pi specific build" OFF)
|
|
|
|
option(BUNDLED_CERTS "Set to ON to use bundled TLS/SSL certificates" OFF)
|
|
|
|
option(CEC "Set to ON to enable CEC" OFF)
|
|
|
|
option(VIDEO_HW_DECODING "Set to ON to enable FFmpeg HW decoding" OFF)
|
|
|
|
option(CLANG_TIDY "Set to ON to build using the clang-tidy static analyzer" OFF)
|
|
|
|
option(ASAN "Set to ON to build with AddressSanitizer" OFF)
|
|
|
|
option(TSAN "Set to ON to build with ThreadSanitizer" OFF)
|
|
|
|
option(UBSAN "Set to ON to build with UndefinedBehaviorSanitizer" OFF)
|
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)
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CLANG_TIDY_BINARY MATCHES 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
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Raspberry Pi setup.
|
|
|
|
|
2022-01-13 18:39:49 +00:00
|
|
|
# Raspberry Pi OS 32-bit (armv7l).
|
2022-04-19 15:24:54 +00:00
|
|
|
if(EXISTS ${CMAKE_FIND_ROOT_PATH}/opt/vc/include/bcm_host.h)
|
2021-11-07 22:54:52 +00:00
|
|
|
set(RPI ON)
|
|
|
|
set(RPI_32 ON)
|
2022-03-13 23:04:38 +00:00
|
|
|
set(GLES ON)
|
2021-11-08 16:58:36 +00:00
|
|
|
set(BCMHOST ON)
|
2021-11-07 22:54:52 +00:00
|
|
|
message("-- Building on a Raspberry Pi (32-bit OS)")
|
|
|
|
endif()
|
|
|
|
|
2022-01-13 18:39:49 +00:00
|
|
|
# Raspberry Pi OS 64-bit (aarch64).
|
2022-04-19 15:24:54 +00:00
|
|
|
if(EXISTS /usr/include/bcm_host.h)
|
2021-11-07 22:54:52 +00:00
|
|
|
set(RPI ON)
|
|
|
|
set(RPI_64 ON)
|
2022-03-13 23:04:38 +00:00
|
|
|
set(GLES ON)
|
2021-11-08 16:58:36 +00:00
|
|
|
set(BCMHOST ON)
|
2021-11-07 22:54:52 +00:00
|
|
|
message("-- Building on a Raspberry Pi (64-bit OS)")
|
|
|
|
endif()
|
|
|
|
|
2022-03-13 23:04:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Emscripten WebAssembly build.
|
|
|
|
|
|
|
|
if(EMSCRIPTEN)
|
|
|
|
set(GLES ON)
|
2022-04-19 15:24:54 +00:00
|
|
|
set(CMAKE_EXECUTABLE_SUFFIX .html)
|
2022-01-13 18:39:49 +00:00
|
|
|
endif()
|
|
|
|
|
2022-03-13 23:04:38 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# OpenGL setup.
|
|
|
|
|
|
|
|
if(GLES)
|
|
|
|
set(GLSYSTEM "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
|
|
|
else()
|
|
|
|
set(GLSYSTEM "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set_property(CACHE GLSYSTEM PROPERTY STRINGS "Desktop OpenGL" "Embedded OpenGL")
|
|
|
|
|
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")
|
2022-04-19 15:24:54 +00:00
|
|
|
set(OpenGL_GL_PREFERENCE GLVND)
|
2013-05-14 19:40:21 +00:00
|
|
|
find_package(OpenGL REQUIRED)
|
2023-11-19 16:37:00 +00:00
|
|
|
elseif(ANDROID)
|
|
|
|
find_package(OpenGLES3 REQUIRED)
|
2022-01-13 19:32:30 +00:00
|
|
|
elseif(GLES AND NOT EMSCRIPTEN)
|
2022-01-13 18:39:49 +00:00
|
|
|
find_package(OpenGLES2 REQUIRED)
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
2020-07-03 18:23:51 +00:00
|
|
|
|
2022-01-02 19:54:46 +00:00
|
|
|
# On macOS and Windows all dependencies are kept in-tree in the "external" directory.
|
2021-11-30 21:14:18 +00:00
|
|
|
if(APPLE)
|
|
|
|
if(NOT EXISTS ${PROJECT_SOURCE_DIR}/external/FFmpeg)
|
|
|
|
message(FATAL_ERROR "-- You need to build the dependencies in ./external first")
|
|
|
|
endif()
|
|
|
|
find_package(CURL REQUIRED)
|
2022-01-02 19:54:46 +00:00
|
|
|
elseif(WIN32)
|
|
|
|
if(NOT EXISTS ${PROJECT_SOURCE_DIR}/external/pugixml/libpugixml.dll AND # MinGW
|
|
|
|
NOT EXISTS ${PROJECT_SOURCE_DIR}/external/pugixml/pugixml.dll) # MSVC
|
|
|
|
message(FATAL_ERROR "-- You need to build the dependencies in ./external first")
|
|
|
|
endif()
|
2023-11-19 16:37:00 +00:00
|
|
|
elseif(NOT EMSCRIPTEN AND NOT ANDROID)
|
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)
|
2023-03-21 16:24:24 +00:00
|
|
|
find_package(Libgit2 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)
|
|
|
|
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.
|
2022-04-19 15:24:54 +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.
|
|
|
|
|
2022-04-19 15:24:54 +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()
|
2022-04-19 15:24:54 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID MATCHES 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()
|
2022-04-19 15:24:54 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID MATCHES 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.
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(NOMINMAX)
|
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.
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES 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()
|
2022-01-08 15:23:23 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O0 -g3 -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.
|
2022-04-19 15:24:54 +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.
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES 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()
|
2022-01-08 15:23:23 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O2 -g3 -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
|
2021-11-17 20:15:35 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2")
|
2020-12-28 22:23:01 +00:00
|
|
|
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.
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES 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()
|
2022-01-08 15:23:23 +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
|
|
|
|
2023-11-10 19:37:22 +00:00
|
|
|
if(APPLE AND CMAKE_CXX_COMPILER_VERSION GREATER_EQUAL 15.0.0)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-invalid-utf8")
|
|
|
|
endif()
|
|
|
|
|
2023-11-19 16:37:00 +00:00
|
|
|
if(ANDROID)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -llog")
|
|
|
|
endif()
|
|
|
|
|
2022-01-13 19:32:30 +00:00
|
|
|
if(EMSCRIPTEN)
|
2022-01-13 20:27:33 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s USE_SDL=2 -pthread")
|
2022-01-13 19:32:30 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s INITIAL_MEMORY=33554432 -s ALLOW_MEMORY_GROWTH=1 -s WASM=1 -s ASSERTIONS=1 -s EXIT_RUNTIME=1 -s USE_SDL=2 \
|
2022-03-15 16:17:56 +00:00
|
|
|
-pthread -s PTHREAD_POOL_SIZE=4 -s DEMANGLE_SUPPORT=1 -s USE_WEBGL2=1 -s FULL_ES3=1 -s ERROR_ON_UNDEFINED_SYMBOLS=1 -s ASYNCIFY \
|
2022-01-13 19:32:30 +00:00
|
|
|
--preload-file ${PROJECT_SOURCE_DIR}/resources@/home/web_user/.emulationstation/resources/ \
|
2023-09-06 19:58:19 +00:00
|
|
|
--preload-file ${PROJECT_SOURCE_DIR}/themes/slate-es-de@/home/web_user/.emulationstation/themes/slate-es-de/ \
|
2022-01-13 19:32:30 +00:00
|
|
|
--preload-file ${PROJECT_SOURCE_DIR}/ROMs@/home/web_user/ROMs/")
|
|
|
|
endif()
|
|
|
|
|
2021-11-16 16:34:11 +00:00
|
|
|
# Raspberry Pi model 3 and higher (ARM Cortex-A53 minimum).
|
2021-11-16 21:34:42 +00:00
|
|
|
if(RPI_32)
|
2021-11-16 16:34:11 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -latomic -mcpu=cortex-a53 -mfpu=neon-fp-armv8")
|
2021-11-16 21:34:42 +00:00
|
|
|
elseif(RPI_64)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -latomic -mcpu=cortex-a53")
|
2021-11-16 16:34:11 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-15 19:22:29 +00:00
|
|
|
if(ASAN AND TSAN)
|
|
|
|
message(FATAL_ERROR "-- AddressSanitizer and ThreadSanitizer can't be combined")
|
|
|
|
endif()
|
|
|
|
|
2021-11-13 12:28:36 +00:00
|
|
|
if(ASAN)
|
|
|
|
message("-- Building with AddressSanitizer")
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
|
2021-11-13 12:28:36 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /fsanitize=address")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fno-omit-frame-pointer")
|
2021-11-15 19:22:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(TSAN)
|
|
|
|
message("-- Building with ThreadSanitizer")
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
|
2021-11-15 19:22:29 +00:00
|
|
|
message(FATAL_ERROR "-- ThreadSanitizer not available for MSVC")
|
|
|
|
else()
|
2021-11-18 21:29:52 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread -fno-omit-frame-pointer")
|
2021-11-15 19:22:29 +00:00
|
|
|
endif()
|
2021-11-13 12:28:36 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-16 19:18:09 +00:00
|
|
|
if(UBSAN)
|
|
|
|
message("-- Building with UndefinedBehaviorSanitizer")
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
|
2021-11-16 19:18:09 +00:00
|
|
|
message(FATAL_ERROR "-- UndefinedBehaviorSanitizer not available for MSVC")
|
|
|
|
else()
|
2021-11-18 21:29:52 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined -fno-omit-frame-pointer")
|
2021-11-16 19:18:09 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
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-04-06 22:39:12 +00:00
|
|
|
endif()
|
|
|
|
|
2023-11-21 18:31:32 +00:00
|
|
|
if(ANDROID)
|
|
|
|
set(BUNDLED_CERTS ON)
|
2023-11-27 19:19:35 +00:00
|
|
|
add_compile_definitions(ANDROID_APPLICATION_ID="org.es_de.frontend")
|
2023-11-21 18:31:32 +00:00
|
|
|
endif()
|
|
|
|
|
2021-12-18 15:23:50 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(BUNDLED_CERTS ON)
|
2023-08-10 17:30:10 +00:00
|
|
|
add_compile_definitions(UNICODE)
|
|
|
|
add_compile_definitions(_UNICODE)
|
2021-12-18 15:23:50 +00:00
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Preprocessor directives.
|
|
|
|
|
2022-03-13 23:04:38 +00:00
|
|
|
if(GLES)
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(USE_OPENGLES)
|
2022-08-30 17:30:46 +00:00
|
|
|
message("-- Building with OpenGL ES renderer")
|
2013-05-14 19:40:21 +00:00
|
|
|
endif()
|
|
|
|
|
2023-02-18 11:42:19 +00:00
|
|
|
if(APPIMAGE_BUILD AND FLATPAK_BUILD)
|
2022-08-20 09:28:20 +00:00
|
|
|
message(FATAL_ERROR "-- APPIMAGE_BUILD and FLATPAK_BUILD can't be combined")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(APPIMAGE_BUILD)
|
|
|
|
if(NOT CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
message(FATAL_ERROR "-- APPIMAGE_BUILD can only be used when building on Linux")
|
|
|
|
endif()
|
|
|
|
add_compile_definitions(APPIMAGE_BUILD)
|
|
|
|
message("-- Building as an AppImage")
|
|
|
|
endif()
|
|
|
|
|
2022-04-24 09:14:52 +00:00
|
|
|
if(FLATPAK_BUILD)
|
2022-08-20 09:28:20 +00:00
|
|
|
if(NOT CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
message(FATAL_ERROR "-- FLATPAK_BUILD can only be used when building on Linux")
|
|
|
|
endif()
|
2022-04-24 09:14:52 +00:00
|
|
|
add_compile_definitions(FLATPAK_BUILD)
|
|
|
|
message("-- Building as a Flatpak")
|
|
|
|
endif()
|
|
|
|
|
2023-02-18 11:42:19 +00:00
|
|
|
if(AUR_BUILD)
|
|
|
|
message("-- Building for the AUR")
|
|
|
|
endif()
|
|
|
|
|
2022-09-25 20:55:07 +00:00
|
|
|
if(STEAM_DECK AND RETRODECK)
|
|
|
|
message(FATAL_ERROR "-- STEAM_DECK and RETRODECK can't be combined")
|
|
|
|
endif()
|
|
|
|
|
2022-04-03 11:34:56 +00:00
|
|
|
if(STEAM_DECK)
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(STEAM_DECK)
|
2022-04-03 11:34:56 +00:00
|
|
|
message("-- Building for the Valve Steam Deck")
|
|
|
|
endif()
|
|
|
|
|
2022-09-25 20:55:07 +00:00
|
|
|
if(RETRODECK)
|
|
|
|
add_compile_definitions(RETRODECK)
|
|
|
|
message("-- Building for RetroDECK")
|
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(RPI)
|
2022-04-19 15:29:29 +00:00
|
|
|
add_compile_definitions(RASPBERRY_PI)
|
2021-06-22 22:24:15 +00:00
|
|
|
endif()
|
|
|
|
|
2021-12-18 15:23:50 +00:00
|
|
|
if(BUNDLED_CERTS)
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(USE_BUNDLED_CERTIFICATES)
|
2021-12-18 15:23:50 +00:00
|
|
|
message("-- Building with bundled TLS/SSL certificates")
|
2021-11-25 16:34:34 +00:00
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
if(DEFINED libCEC_FOUND)
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(HAVE_LIBCEC)
|
2021-01-21 20:44:51 +00:00
|
|
|
endif()
|
|
|
|
|
2021-11-07 22:54:52 +00:00
|
|
|
if(VIDEO_HW_DECODING)
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(VIDEO_HW_DECODING)
|
2022-09-29 20:32:57 +00:00
|
|
|
message("-- Building with FFmpeg HW decoding")
|
2021-11-07 22:54:52 +00:00
|
|
|
endif()
|
|
|
|
|
2023-12-08 16:25:38 +00:00
|
|
|
if(AUR_BUILD OR FLATPAK_BUILD OR RETRODECK OR RPI OR ANDROID)
|
2023-02-18 11:42:19 +00:00
|
|
|
set(APPLICATION_UPDATER OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES FreeBSD OR CMAKE_SYSTEM_NAME MATCHES NetBSD OR CMAKE_SYSTEM_NAME MATCHES OpenBSD)
|
|
|
|
set(APPLICATION_UPDATER OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(APPLICATION_UPDATER)
|
|
|
|
add_compile_definitions(APPLICATION_UPDATER)
|
|
|
|
else()
|
|
|
|
message("-- Building without application updater")
|
|
|
|
endif()
|
|
|
|
|
2023-02-18 19:44:39 +00:00
|
|
|
# This is needed by the application updater to identify the package type.
|
2023-02-18 11:42:19 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
if(LINUX_CPACK_GENERATOR MATCHES DEB)
|
|
|
|
add_compile_definitions(LINUX_DEB_PACKAGE)
|
|
|
|
elseif(LINUX_CPACK_GENERATOR MATCHES RPM)
|
|
|
|
add_compile_definitions(LINUX_RPM_PACKAGE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES arm)
|
|
|
|
add_compile_definitions(MACOS_APPLE_CPU)
|
|
|
|
else()
|
|
|
|
add_compile_definitions(MACOS_INTEL_CPU)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2023-11-19 16:37:00 +00:00
|
|
|
if(ANDROID)
|
|
|
|
if(ANDROID_ABI MATCHES arm64-v8a)
|
2023-11-30 16:20:19 +00:00
|
|
|
message("-- Building for Android arm64-v8a on API level ${ANDROID_PLATFORM}")
|
2023-11-19 16:37:00 +00:00
|
|
|
set(ANDROID_CPU_ARCH arm64-v8a)
|
|
|
|
elseif(ANDROID_ABI MATCHES x86_64)
|
2023-11-30 16:20:19 +00:00
|
|
|
message("-- Building for Android x86_64 on API level ${ANDROID_PLATFORM}")
|
2023-11-19 16:37:00 +00:00
|
|
|
set(ANDROID_CPU_ARCH x86_64)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "-- Unsupported Android ABI: " ${ANDROID_ABI})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2023-02-18 11:42:19 +00:00
|
|
|
# Affects the application updater and is used for displaying version info in the main menu.
|
2022-12-22 19:05:04 +00:00
|
|
|
if(ES_VERSION MATCHES alpha OR ES_VERSION MATCHES beta OR ES_VERSION MATCHES dev)
|
2023-02-18 11:42:19 +00:00
|
|
|
add_compile_definitions(IS_PRERELEASE)
|
2022-04-19 15:27:04 +00:00
|
|
|
endif()
|
|
|
|
|
2021-08-15 17:30:31 +00:00
|
|
|
# GLM library options.
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(GLM_FORCE_CXX17)
|
|
|
|
add_compile_definitions(GLM_FORCE_XYZW_ONLY)
|
2021-08-15 17:30:31 +00:00
|
|
|
|
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.
|
2023-12-01 22:00:41 +00:00
|
|
|
if(NOT WIN32 AND NOT APPLE AND NOT ANDROID)
|
2021-04-02 10:12:49 +00:00
|
|
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
set(CMAKE_INSTALL_PREFIX /usr CACHE INTERNAL CMAKE_INSTALL_PREFIX)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES NetBSD)
|
|
|
|
set(CMAKE_INSTALL_PREFIX /usr/pkg CACHE INTERNAL CMAKE_INSTALL_PREFIX)
|
2021-04-02 10:12:49 +00:00
|
|
|
else()
|
2022-04-19 15:24:54 +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})
|
2022-04-19 15:24:54 +00:00
|
|
|
add_compile_definitions(ES_INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}")
|
2020-07-03 18:23:51 +00:00
|
|
|
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}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/CImg
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/glm
|
2022-10-03 16:43:30 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/lunasvg/include
|
2021-10-06 15:53:13 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/rapidjson/include
|
2022-01-06 22:19:37 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/rlottie/inc
|
2021-09-19 16:53:20 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src)
|
2021-11-08 16:58:36 +00:00
|
|
|
|
2021-11-30 21:14:18 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/FFmpeg
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freeimage/FreeImage/Source
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freetype/include
|
2023-03-21 23:17:26 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/libgit2/include
|
2021-11-30 21:14:18 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/pugixml/src
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/SDL)
|
2022-01-02 19:54:46 +00:00
|
|
|
elseif(WIN32)
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS}
|
2023-06-24 11:27:42 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/curl/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/glew/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/ffmpeg/include
|
2022-01-02 19:54:46 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/FreeImage/Dist/x64
|
2022-01-11 16:33:34 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freetype/include
|
2023-03-21 22:22:07 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/libgit2/include
|
2022-01-02 19:54:46 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/pugixml/src
|
2023-06-24 11:27:42 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/SDL2)
|
2022-01-13 19:32:30 +00:00
|
|
|
elseif(EMSCRIPTEN)
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/curl/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/ffmpeg.wasm-core
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/FreeImage-CMake/FreeImage/Source
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freetype/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/pugixml/src)
|
2023-11-19 16:37:00 +00:00
|
|
|
elseif(ANDROID)
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/curl/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/ffmpeg-kit/src/ffmpeg
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freeimage/FreeImage/Source
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/freetype/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/libgit2/include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/pugixml/src
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external/SDL_Android)
|
2021-11-30 21:14:18 +00:00
|
|
|
else()
|
|
|
|
set(COMMON_INCLUDE_DIRS ${COMMON_INCLUDE_DIRS}
|
|
|
|
${FFMPEG_INCLUDE_DIRS}
|
|
|
|
${FreeImage_INCLUDE_DIRS}
|
|
|
|
${FREETYPE_INCLUDE_DIRS}
|
2023-03-21 16:24:24 +00:00
|
|
|
${GIT2_INCLUDE_PATH}
|
2021-12-01 18:34:12 +00:00
|
|
|
${PUGIXML_INCLUDE_DIRS}
|
|
|
|
${SDL2_INCLUDE_DIR})
|
2021-06-22 22:24:15 +00:00
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
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.
|
2022-04-19 15:24:54 +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)
|
2022-01-09 22:40:59 +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
|
|
|
|
2021-11-30 21:14:18 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES}
|
|
|
|
${CURL_LIBRARIES}
|
2023-06-25 10:42:16 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libavcodec.60.dylib
|
|
|
|
${PROJECT_SOURCE_DIR}/libavfilter.9.dylib
|
|
|
|
${PROJECT_SOURCE_DIR}/libavformat.60.dylib
|
|
|
|
${PROJECT_SOURCE_DIR}/libavutil.58.dylib
|
2022-04-15 09:30:41 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libswresample.4.dylib
|
2023-06-25 10:42:16 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libswscale.7.dylib
|
2021-11-30 21:14:18 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libfreeimage.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libfreetype.6.dylib
|
2023-11-05 11:42:40 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libgit2.1.7.dylib
|
2021-11-30 21:14:18 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libpugixml.a
|
2022-12-15 19:13:37 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libSDL2-2.0.0.dylib)
|
2020-07-03 18:23:51 +00:00
|
|
|
elseif(WIN32)
|
2022-04-19 15:24:54 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
|
2022-01-09 22:40:59 +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
|
2023-03-21 22:22:07 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/git2.lib
|
2022-01-09 22:40:59 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/glew32.lib
|
|
|
|
${PROJECT_SOURCE_DIR}/libcurl-x64.lib
|
|
|
|
${PROJECT_SOURCE_DIR}/freetype.lib
|
2022-10-03 16:43:30 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/lunasvg.lib
|
2022-01-09 22:40:59 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/pugixml.lib
|
|
|
|
${PROJECT_SOURCE_DIR}/rlottie.lib
|
|
|
|
${PROJECT_SOURCE_DIR}/SDL2main.lib
|
|
|
|
${PROJECT_SOURCE_DIR}/SDL2.lib
|
|
|
|
Winmm.dll)
|
2020-12-28 22:23:01 +00:00
|
|
|
else()
|
2023-06-25 10:42:16 +00:00
|
|
|
set(COMMON_LIBRARIES ${PROJECT_SOURCE_DIR}/avcodec-60.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/avfilter-9.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/avformat-60.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/avutil-58.dll
|
2022-04-15 09:13:15 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/swresample-4.dll
|
2023-06-25 10:42:16 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/swscale-7.dll
|
2022-01-09 22:40:59 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/FreeImage.dll
|
2023-03-21 22:22:07 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libgit2.dll
|
2022-01-09 22:40:59 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/glew32.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/libcurl-x64.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/libfreetype.dll
|
2022-10-04 15:31:03 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/liblunasvg.dll
|
2022-01-09 22:40:59 +00:00
|
|
|
${PROJECT_SOURCE_DIR}/libpugixml.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/libSDL2main.a
|
|
|
|
${PROJECT_SOURCE_DIR}/librlottie.dll
|
|
|
|
${PROJECT_SOURCE_DIR}/SDL2.dll
|
|
|
|
mingw32
|
|
|
|
Winmm.dll)
|
2020-12-28 22:23:01 +00:00
|
|
|
endif()
|
2023-11-19 16:37:00 +00:00
|
|
|
elseif(ANDROID)
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES}
|
|
|
|
# FFmpeg libraries.
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libavcodec.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libavfilter.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libavformat.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libavutil.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libswresample.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libswscale.so
|
|
|
|
# Other dependencies.
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libcurl.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libfreeimage.a
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libfreetype.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libgit2.so
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libpugixml.a
|
|
|
|
${PROJECT_SOURCE_DIR}/android/libs/${ANDROID_CPU_ARCH}/libSDL2.so)
|
2022-01-13 19:32:30 +00:00
|
|
|
elseif(EMSCRIPTEN)
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES}
|
|
|
|
# FFmpeg core libraries.
|
|
|
|
${PROJECT_SOURCE_DIR}/libavcodec.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libavfilter.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libavformat.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libavutil.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libpostproc.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libswresample.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libswscale.a
|
|
|
|
# FFmpeg third party libraries.
|
|
|
|
${PROJECT_SOURCE_DIR}/libx264.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libx265.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libass.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libfdk-aac.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libfribidi.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libharfbuzz.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libmp3lame.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libogg.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libopus.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libtheoradec.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libtheoraenc.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libvorbis.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libvorbisenc.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libvorbisfile.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libvpx.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libwavpack.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libz.a
|
|
|
|
# Other dependencies.
|
|
|
|
${PROJECT_SOURCE_DIR}/libcurl.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libFreeImage.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libfreetype.a
|
|
|
|
${PROJECT_SOURCE_DIR}/libpugixml.a)
|
2021-11-30 21:14:18 +00:00
|
|
|
else()
|
|
|
|
set(COMMON_LIBRARIES ${CURL_LIBRARIES}
|
|
|
|
${FFMPEG_LIBRARIES}
|
|
|
|
${FreeImage_LIBRARIES}
|
|
|
|
${FREETYPE_LIBRARIES}
|
2023-03-21 16:24:24 +00:00
|
|
|
${GIT2_LIBRARY}
|
2021-11-30 21:14:18 +00:00
|
|
|
${PUGIXML_LIBRARIES}
|
|
|
|
${SDL2_LIBRARY})
|
2020-07-03 18:23:51 +00:00
|
|
|
endif()
|
2013-05-14 19:40:21 +00:00
|
|
|
|
2022-01-06 23:38:20 +00:00
|
|
|
if(NOT WIN32)
|
2022-10-03 16:43:30 +00:00
|
|
|
# SVG rendering library LunaSVG.
|
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${PROJECT_SOURCE_DIR}/liblunasvg.a)
|
|
|
|
# Lottie animation library rlottie.
|
2022-01-06 23:38:20 +00:00
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${PROJECT_SOURCE_DIR}/librlottie.a)
|
|
|
|
endif()
|
2022-01-06 22:19:37 +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
|
|
|
|
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.
|
2022-04-19 15:24:54 +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.
|
2021-11-08 16:58:36 +00:00
|
|
|
if(BCMHOST)
|
2021-11-07 22:54:52 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES bcm_host vchiq_arm)
|
|
|
|
if(RPI_32)
|
2022-04-19 15:24:54 +00:00
|
|
|
link_directories(${CMAKE_FIND_ROOT_PATH}/opt/vc/lib)
|
2021-11-07 22:54:52 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# 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})
|
2023-11-19 16:37:00 +00:00
|
|
|
elseif(GLES AND ANDROID)
|
|
|
|
list(APPEND COMMON_LIBRARIES ${OPENGLES3_LIBRARIES})
|
2022-01-13 18:39:49 +00:00
|
|
|
elseif(GLES)
|
|
|
|
list(APPEND COMMON_LIBRARIES ${OPENGLES2_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.
|
2023-11-19 16:37:00 +00:00
|
|
|
if(NOT ANDROID)
|
|
|
|
add_subdirectory(es-pdf-converter)
|
|
|
|
endif()
|
2022-04-19 15:24:54 +00:00
|
|
|
add_subdirectory(external)
|
|
|
|
add_subdirectory(es-core)
|
|
|
|
add_subdirectory(es-app)
|
2022-01-06 22:19:37 +00:00
|
|
|
|
2023-11-19 16:37:00 +00:00
|
|
|
if(NOT ANDROID)
|
|
|
|
# Make sure that es-pdf-convert is built first, and then that rlottie is built before es-core.
|
|
|
|
# Also set lottie2gif to not be built.
|
|
|
|
add_dependencies(lunasvg es-pdf-convert)
|
|
|
|
endif()
|
|
|
|
|
2022-01-06 22:19:37 +00:00
|
|
|
add_dependencies(es-core rlottie)
|
|
|
|
set_target_properties(lottie2gif PROPERTIES EXCLUDE_FROM_ALL 1 EXCLUDE_FROM_DEFAULT_BUILD 1)
|