2020-07-07 19:33:33 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
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-01-21 20:44:51 +00:00
|
|
|
# Add local find modules to the CMake path.
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH
|
2020-08-19 20:30:10 +00:00
|
|
|
${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-01-21 20:44:51 +00:00
|
|
|
option(APPLE_SKIP_INSTALL_LIBS "Set to ON to skip installation of shared libraries (macOS only)"
|
2020-08-23 09:35:02 +00:00
|
|
|
${APPLE_SKIP_INSTALL_LIBS})
|
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.
|
|
|
|
|
2017-08-19 12:33:50 +00:00
|
|
|
if(GLES)
|
2019-08-08 20:16:11 +00:00
|
|
|
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
2017-08-19 12:33:50 +00:00
|
|
|
elseif(GL)
|
|
|
|
set(GLSystem "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
|
2020-06-25 17:52:38 +00:00
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Check if we're running on a Raspberry Pi.
|
2019-04-16 15:29:12 +00:00
|
|
|
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/opt/vc/include/bcm_host.h")
|
2013-05-14 19:40:21 +00:00
|
|
|
MESSAGE("bcm_host.h found")
|
|
|
|
set(BCMHOST found)
|
2019-08-08 20:16:11 +00:00
|
|
|
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
2020-06-25 17:52:38 +00:00
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Check if we're running on OSMC Vero4K.
|
2019-04-16 15:29:12 +00:00
|
|
|
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/opt/vero3/lib/libMali.so")
|
2018-07-26 19:14:11 +00:00
|
|
|
MESSAGE("libMali.so found")
|
|
|
|
set(VERO4K found)
|
2019-08-08 20:16:11 +00:00
|
|
|
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
2020-06-25 17:52:38 +00:00
|
|
|
|
2020-06-24 15:38:41 +00:00
|
|
|
# Check if we're running on olinuxino / odroid / etc.
|
2019-04-16 15:29:12 +00:00
|
|
|
elseif(EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/libMali.so" OR
|
|
|
|
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/libMali.so" OR
|
|
|
|
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/aarch64-linux-gnu/libMali.so" OR
|
|
|
|
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/mali-egl/libmali.so" OR
|
|
|
|
EXISTS "${CMAKE_FIND_ROOT_PATH}/usr/lib/arm-linux-gnueabihf/libmali.so")
|
2015-01-06 20:41:00 +00:00
|
|
|
MESSAGE("libMali.so found")
|
2019-08-08 20:16:11 +00:00
|
|
|
set(GLSystem "Embedded OpenGL" CACHE STRING "The OpenGL system to be used")
|
2015-01-06 20:41:00 +00:00
|
|
|
else()
|
2017-08-19 12:33:50 +00:00
|
|
|
set(GLSystem "Desktop OpenGL" CACHE STRING "The OpenGL system to be used")
|
|
|
|
endif(GLES)
|
|
|
|
|
2019-08-08 20:16:11 +00:00
|
|
|
set_property(CACHE GLSystem PROPERTY STRINGS "Desktop OpenGL" "Embedded OpenGL")
|
2015-01-06 20:41:00 +00:00
|
|
|
|
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
|
|
|
|
2013-05-14 19:40:21 +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)
|
|
|
|
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(RapidJSON REQUIRED)
|
|
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
find_package(VLC 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.
|
2013-05-22 17:11:10 +00:00
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
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.
|
|
|
|
|
2020-07-07 19:33:33 +00:00
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
2020-06-25 17:52:38 +00:00
|
|
|
message("-- Compiler is Clang/LLVM")
|
|
|
|
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion OUTPUT_VARIABLE CLANG_VERSION)
|
2020-08-17 17:15:05 +00:00
|
|
|
if(CLANG_VERSION VERSION_LESS 4.2.1)
|
2021-01-21 20:44:51 +00:00
|
|
|
message(SEND_ERROR "You need at least Clang 4.2.1 to compile EmulationStation-DE")
|
2020-06-25 17:52:38 +00:00
|
|
|
endif()
|
2020-07-07 19:33:33 +00:00
|
|
|
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
2020-06-25 17:52:38 +00:00
|
|
|
message("-- Compiler is GNU/GCC")
|
|
|
|
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpfullversion OUTPUT_VARIABLE G++_VERSION)
|
2020-07-07 19:33:33 +00:00
|
|
|
if(G++_VERSION VERSION_LESS 4.8)
|
2021-01-21 20:44:51 +00:00
|
|
|
message(SEND_ERROR "You need at least GCC 4.8 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()
|
2020-12-28 22:23:01 +00:00
|
|
|
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
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()
|
|
|
|
|
2020-12-28 22:49:34 +00:00
|
|
|
if (CMAKE_BUILD_TYPE)
|
|
|
|
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)
|
2020-06-24 15:38:41 +00:00
|
|
|
# Enable the C++11 standard and disable optimizations as it's a debug build.
|
2020-12-28 22:23:01 +00:00
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c11 /Od /DEBUG:FULL")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O0")
|
|
|
|
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.
|
|
|
|
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.
|
2020-12-28 22:23:01 +00:00
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c11 /O2 /DEBUG:FULL")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O2 -pg -g")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2 -pg")
|
|
|
|
endif()
|
2016-11-17 20:37:44 +00:00
|
|
|
else()
|
2020-06-24 15:38:41 +00:00
|
|
|
# Enable the C++11 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.
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNDEBUG /std:c11 /O2 /DEBUG:NONE")
|
2020-11-27 20:37:10 +00:00
|
|
|
else()
|
2020-12-28 22:23:01 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O2 -DNDEBUG")
|
|
|
|
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)
|
|
|
|
if(${CMAKE_OSX_DEPLOYMENT_TARGET} VERSION_GREATER 10.13)
|
|
|
|
message("-- macOS version 10.14 or higher detected so if code signing is enabled, Hardened Runtime will be used")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-21 20:44:51 +00:00
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
# Preprocessor directives.
|
|
|
|
|
2013-05-14 19:40:21 +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-01-21 20:44:51 +00:00
|
|
|
if(DEFINED BCMHOST OR RPI)
|
|
|
|
add_definitions(-D_RPI_)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(DEFINED VERO4K)
|
|
|
|
add_definitions(-D_VERO4K_)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(DEFINED libCEC_FOUND)
|
|
|
|
add_definitions(-DHAVE_LIBCEC)
|
|
|
|
endif()
|
|
|
|
|
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)
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr")
|
|
|
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr/pkg")
|
|
|
|
else()
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
|
|
|
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.
|
|
|
|
|
2014-06-20 01:30:09 +00:00
|
|
|
set(COMMON_INCLUDE_DIRS
|
2020-08-19 20:30:10 +00:00
|
|
|
${CURL_INCLUDE_DIR}
|
|
|
|
${FreeImage_INCLUDE_DIRS}
|
|
|
|
${FREETYPE_INCLUDE_DIRS}
|
|
|
|
${PUGIXML_INCLUDE_DIRS}
|
|
|
|
${RAPIDJSON_INCLUDE_DIRS}
|
|
|
|
${SDL2_INCLUDE_DIR}
|
|
|
|
${VLC_INCLUDE_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src)
|
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()
|
|
|
|
#include_directories(${WIN32_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
|
2020-08-17 17:15:05 +00:00
|
|
|
# Temporary solution until the VLC find module has been updated to work properly on macOS.
|
|
|
|
if(APPLE)
|
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.
|
2013-05-22 17:11:10 +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()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
if(DEFINED BCMHOST)
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS
|
2020-08-19 20:30:10 +00:00
|
|
|
"${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")
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add Vero4k include directory.
|
2018-07-26 19:14:11 +00:00
|
|
|
elseif(DEFINED VERO4K)
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS "${CMAKE_FIND_ROOT_PATH}/opt/vero3/include")
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add OpenGL include directory.
|
2013-05-15 07:50:59 +00:00
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR})
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
2020-06-25 17:52:38 +00:00
|
|
|
# Add OpenGL ES include directory.
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_INCLUDE_DIRS ${OPENGLES_INCLUDE_DIR})
|
2013-05-15 07:50:59 +00:00
|
|
|
endif()
|
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)
|
2020-07-03 18:23:51 +00:00
|
|
|
set(COMMON_LIBRARIES
|
2020-08-19 20:30:10 +00:00
|
|
|
${CURL_LIBRARIES}
|
|
|
|
${FreeImage_LIBRARIES}
|
|
|
|
${FREETYPE_LIBRARIES}
|
|
|
|
${PUGIXML_LIBRARIES}
|
|
|
|
${SDL2_LIBRARY}
|
|
|
|
${VLC_LIBRARIES}
|
|
|
|
nanosvg)
|
2020-07-03 18:23:51 +00:00
|
|
|
elseif(WIN32)
|
2020-12-28 22:23:01 +00:00
|
|
|
if(DEFINED MSVC)
|
|
|
|
set(COMMON_LIBRARIES
|
|
|
|
"${PROJECT_SOURCE_DIR}/FreeImage.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/glew32.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libcurl-x64.lib"
|
2020-12-29 16:44:00 +00:00
|
|
|
"${PROJECT_SOURCE_DIR}/freetype.lib"
|
2020-12-28 22:23:01 +00:00
|
|
|
"${PROJECT_SOURCE_DIR}/pugixml.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2main.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/libvlc.lib"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2.lib"
|
|
|
|
"nanosvg"
|
|
|
|
"Winmm.dll")
|
|
|
|
else()
|
|
|
|
set(COMMON_LIBRARIES
|
|
|
|
"${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}/libvlc.dll"
|
|
|
|
"${PROJECT_SOURCE_DIR}/SDL2.dll"
|
|
|
|
"mingw32"
|
|
|
|
"nanosvg"
|
|
|
|
"Winmm.dll")
|
|
|
|
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)
|
2020-08-21 19:58:12 +00:00
|
|
|
# See es-app/CMakeLists.txt for an explation for why an extra 'Resources' directory
|
|
|
|
# has been added to the install prefix.
|
2020-08-23 09:35:02 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX
|
|
|
|
"/Applications/EmulationStation Desktop Edition.app/Contents/Resources")
|
2020-08-21 19:58:12 +00:00
|
|
|
|
|
|
|
# Temporary solution until the VLC find module has been updated to work properly on macOS.
|
2020-08-17 17:15:05 +00:00
|
|
|
set(COMMON_LIBRARIES ${COMMON_LIBRARIES}
|
|
|
|
"/Applications/VLC.app/Contents/MacOS/lib/libvlc.dylib")
|
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)
|
|
|
|
|
|
|
|
if(NOT APPLE_SKIP_INSTALL_LIBS)
|
|
|
|
set(CMAKE_INSTALL_RPATH @executable_path)
|
|
|
|
endif()
|
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)
|
2017-11-19 23:06:04 +00:00
|
|
|
if(DEFINED BCMHOST)
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES vchiq_arm)
|
2017-11-19 23:06:04 +00:00
|
|
|
endif()
|
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.
|
2013-05-22 17:11:10 +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()
|
|
|
|
|
2013-05-14 19:40:21 +00:00
|
|
|
if(DEFINED BCMHOST)
|
2021-01-21 20:44:51 +00:00
|
|
|
link_directories("${CMAKE_FIND_ROOT_PATH}/opt/vc/lib")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES bcm_host brcmEGL ${OPENGLES_LIBRARIES})
|
2018-07-26 19:14:11 +00:00
|
|
|
elseif(DEFINED VERO4K)
|
2021-01-21 20:44:51 +00:00
|
|
|
link_directories("${CMAKE_FIND_ROOT_PATH}/opt/vero3/lib")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES EGL ${OPENGLES_LIBRARIES})
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
|
|
|
if(${GLSystem} MATCHES "Desktop OpenGL")
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES ${OPENGL_LIBRARIES})
|
2013-05-15 07:50:59 +00:00
|
|
|
else()
|
2020-07-07 19:33:33 +00:00
|
|
|
list(APPEND COMMON_LIBRARIES EGL ${OPENGLES_LIBRARIES})
|
2013-05-15 07:50:59 +00:00
|
|
|
endif()
|
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-20 01:30:09 +00:00
|
|
|
add_subdirectory("external")
|
2014-06-21 01:03:05 +00:00
|
|
|
add_subdirectory("es-core")
|
2014-06-25 16:29:58 +00:00
|
|
|
add_subdirectory("es-app")
|