2020-07-12 16:57:04 +00:00
|
|
|
cmake_minimum_required(VERSION 3.8)
|
2019-10-04 03:54:09 +00:00
|
|
|
project(duckstation C CXX)
|
2019-09-09 07:01:26 +00:00
|
|
|
|
2020-07-13 15:26:43 +00:00
|
|
|
message("CMake Version: ${CMAKE_VERSION}")
|
2020-07-12 16:57:04 +00:00
|
|
|
|
2019-11-23 08:55:13 +00:00
|
|
|
# Pull in modules.
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/")
|
|
|
|
|
2020-05-07 12:48:13 +00:00
|
|
|
# Platform detection.
|
|
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
|
|
set(LINUX TRUE)
|
|
|
|
set(SUPPORTS_X11 TRUE)
|
2020-07-07 11:40:55 +00:00
|
|
|
set(SUPPORTS_WAYLAND TRUE)
|
2020-05-07 12:48:13 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
# Global options.
|
2019-12-31 06:17:17 +00:00
|
|
|
if(NOT ANDROID)
|
|
|
|
option(BUILD_SDL_FRONTEND "Build the SDL frontend" ON)
|
|
|
|
option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
|
2020-05-23 07:44:43 +00:00
|
|
|
option(BUILD_LIBRETRO_CORE "Build a libretro core" OFF)
|
2020-04-30 15:01:53 +00:00
|
|
|
option(ENABLE_DISCORD_PRESENCE "Build with Discord Rich Presence support" ON)
|
2020-04-07 02:12:26 +00:00
|
|
|
option(USE_SDL2 "Link with SDL2 for controller support" ON)
|
2019-12-31 06:17:17 +00:00
|
|
|
endif()
|
|
|
|
|
2019-11-23 08:55:13 +00:00
|
|
|
|
2020-05-07 12:48:13 +00:00
|
|
|
# OpenGL context creation methods.
|
|
|
|
if(SUPPORTS_X11)
|
|
|
|
option(USE_X11 "Support X11 window system" ON)
|
|
|
|
endif()
|
2020-07-07 11:40:55 +00:00
|
|
|
if(SUPPORTS_WAYLAND)
|
|
|
|
option(USE_WAYLAND "Support Wayland window system" OFF)
|
|
|
|
endif()
|
2020-05-07 12:48:13 +00:00
|
|
|
if(LINUX OR ANDROID)
|
|
|
|
option(USE_EGL "Support EGL OpenGL context creation" ON)
|
|
|
|
endif()
|
|
|
|
|
2020-05-23 07:44:43 +00:00
|
|
|
# When we're building for libretro, everything else is invalid because of PIC.
|
2020-07-07 10:33:15 +00:00
|
|
|
if(ANDROID OR BUILD_LIBRETRO_CORE)
|
2020-05-23 07:44:43 +00:00
|
|
|
if(BUILD_SDL_FRONTEND)
|
2020-07-07 10:33:15 +00:00
|
|
|
message(WARNING "Building for Android or libretro core, disabling SDL frontend")
|
2020-05-23 07:44:43 +00:00
|
|
|
set(BUILD_SDL_FRONTEND OFF)
|
|
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
2020-07-07 10:33:15 +00:00
|
|
|
message(WARNING "Building for Android or libretro core, disabling Qt frontend")
|
2020-05-23 07:44:43 +00:00
|
|
|
set(BUILD_QT_FRONTEND OFF)
|
|
|
|
endif()
|
|
|
|
if(ENABLE_DISCORD_PRESENCE)
|
2020-07-07 10:33:15 +00:00
|
|
|
message("Building for Android or libretro core, disabling Discord Presence support")
|
2020-05-23 07:44:43 +00:00
|
|
|
set(ENABLE_DISCORD_PRESENCE OFF)
|
|
|
|
endif()
|
|
|
|
if(USE_SDL2)
|
2020-07-07 10:33:15 +00:00
|
|
|
message("Building for Android or libretro core, disabling SDL2 support")
|
2020-05-23 07:44:43 +00:00
|
|
|
set(USE_SDL2 OFF)
|
|
|
|
endif()
|
|
|
|
if(USE_X11)
|
|
|
|
set(USE_X11 OFF)
|
|
|
|
endif()
|
2020-07-07 10:27:06 +00:00
|
|
|
if(BUILD_LIBRETRO_CORE AND USE_EGL)
|
2020-05-23 07:44:43 +00:00
|
|
|
set(USE_EGL OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Force PIC when compiling a libretro core.
|
2020-07-07 10:33:15 +00:00
|
|
|
if(BUILD_LIBRETRO_CORE)
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
endif()
|
2020-05-23 07:44:43 +00:00
|
|
|
endif()
|
|
|
|
|
2020-05-07 12:48:13 +00:00
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
# Common include/library directories on Windows.
|
|
|
|
if(WIN32)
|
2020-02-28 07:00:12 +00:00
|
|
|
set(SDL2_FOUND TRUE)
|
2020-02-15 08:40:21 +00:00
|
|
|
set(SDL2_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/include")
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
set(SDL2_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/lib64/SDL2.lib")
|
|
|
|
set(SDL2MAIN_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/lib64/SDL2main.lib")
|
2020-05-16 03:10:31 +00:00
|
|
|
set(SDL2_DLL_PATH "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/bin64/SDL2.dll")
|
2020-07-27 16:09:58 +00:00
|
|
|
set(Qt5_DIR "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/qt/5.15.0/msvc2017_64/lib/cmake/Qt5")
|
2019-09-09 07:01:26 +00:00
|
|
|
else()
|
2020-02-15 08:40:21 +00:00
|
|
|
set(SDL2_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/lib32/SDL2.lib")
|
|
|
|
set(SDL2MAIN_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/lib32/SDL2main.lib")
|
2020-05-16 03:10:31 +00:00
|
|
|
set(SDL2_DLL_PATH "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/sdl2/bin32/SDL2.dll")
|
2020-07-27 16:09:58 +00:00
|
|
|
set(Qt5_DIR "${CMAKE_CURRENT_SOURCE_DIR}/dep/msvc/qt/5.15.0/msvc2017_32/lib/cmake/Qt5")
|
2019-09-09 07:01:26 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2019-11-23 08:55:13 +00:00
|
|
|
# Required libraries.
|
2019-11-27 15:55:33 +00:00
|
|
|
if(NOT ANDROID)
|
2020-04-23 03:04:33 +00:00
|
|
|
if(NOT WIN32 AND (BUILD_SDL_FRONTEND OR USE_SDL2))
|
2019-12-31 06:17:17 +00:00
|
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
2020-01-24 04:51:24 +00:00
|
|
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
2019-12-31 06:17:17 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-05-07 12:48:13 +00:00
|
|
|
if(USE_EGL)
|
2019-11-28 14:17:24 +00:00
|
|
|
find_package(EGL REQUIRED)
|
2019-11-27 15:55:33 +00:00
|
|
|
endif()
|
2020-05-07 12:48:13 +00:00
|
|
|
if(USE_X11)
|
|
|
|
find_package(X11 REQUIRED)
|
|
|
|
endif()
|
2020-07-07 11:40:55 +00:00
|
|
|
if(USE_WAYLAND)
|
|
|
|
find_package(ECM REQUIRED NO_MODULE)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${ECM_MODULE_PATH}")
|
|
|
|
find_package(Wayland REQUIRED Egl)
|
|
|
|
message(STATUS "Wayland support enabled")
|
|
|
|
endif()
|
2019-11-23 08:55:13 +00:00
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
# Set _DEBUG macro for Debug builds.
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")
|
|
|
|
|
|
|
|
|
|
|
|
# Release build optimizations for MSVC.
|
|
|
|
if(MSVC)
|
|
|
|
add_definitions("/D_CRT_SECURE_NO_WARNINGS")
|
|
|
|
foreach(config CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
|
|
|
|
# Set warning level 3 instead of 4.
|
|
|
|
string(REPLACE "/W3" "/W4" ${config} "${${config}}")
|
|
|
|
|
|
|
|
# Enable intrinsic functions, disable minimal rebuild.
|
|
|
|
set(${config} "${${config}} /Oi /Gm-")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# RelWithDebInfo is set to Ob1 instead of Ob2.
|
|
|
|
string(REPLACE "/Ob1" "/Ob2" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
|
|
|
|
string(REPLACE "/Ob1" "/Ob2" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
|
|
|
|
|
|
|
|
# Disable incremental linking in RelWithDebInfo.
|
|
|
|
string(REPLACE "/INCREMENTAL" "/INCREMENTAL:NO" CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO "${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO}")
|
|
|
|
|
|
|
|
# COMDAT folding/remove unused functions.
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /OPT:REF /OPT:ICF")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO "${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO} /OPT:REF /OPT:ICF")
|
2020-07-07 08:54:11 +00:00
|
|
|
|
|
|
|
# Enable LTO/LTCG on Release builds.
|
|
|
|
if(${CMAKE_BUILD_TYPE} STREQUAL "Release")
|
|
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
|
|
|
|
endif()
|
2019-09-09 07:01:26 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
# Detect C++ version support.
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2020-02-12 19:20:11 +00:00
|
|
|
include(CheckCXXFlag)
|
|
|
|
check_cxx_flag(-Wall COMPILER_SUPPORTS_WALL)
|
2019-09-09 07:01:26 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-switch")
|
2019-11-27 15:55:33 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-switch")
|
|
|
|
if(NOT ANDROID)
|
2020-02-12 19:20:11 +00:00
|
|
|
check_cxx_flag(-Wno-class-memaccess COMPILER_SUPPORTS_MEMACCESS)
|
|
|
|
check_cxx_flag(-Wno-invalid-offsetof COMPILER_SUPPORTS_OFFSETOF)
|
2019-11-27 15:55:33 +00:00
|
|
|
endif()
|
2019-09-09 07:01:26 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
# Detect processor type.
|
|
|
|
if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "amd64")
|
|
|
|
set(CPU_ARCH "x64")
|
|
|
|
elseif(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "AMD64")
|
|
|
|
# MSVC x86/x64
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
set(CPU_ARCH "x64")
|
|
|
|
else()
|
|
|
|
set(CPU_ARCH "x86")
|
|
|
|
endif()
|
|
|
|
elseif(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i386" OR
|
|
|
|
${CMAKE_SYSTEM_PROCESSOR} STREQUAL "i686")
|
|
|
|
set(CPU_ARCH "x86")
|
|
|
|
elseif(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
|
|
|
|
set(CPU_ARCH "aarch64")
|
2019-11-27 15:55:33 +00:00
|
|
|
elseif(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "arm" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "armv7-a")
|
2019-09-09 07:01:26 +00:00
|
|
|
set(CPU_ARCH "arm")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unknown system processor: " ${CMAKE_SYSTEM_PROCESSOR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2020-05-16 03:10:31 +00:00
|
|
|
# Write binaries to a seperate directory.
|
2020-07-07 08:37:03 +00:00
|
|
|
if(WIN32 AND NOT BUILD_LIBRETRO_CORE)
|
|
|
|
# For Windows, use the source directory, except for libretro.
|
2020-05-16 03:10:31 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin/${CPU_ARCH}")
|
|
|
|
else()
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
|
|
|
|
endif()
|
|
|
|
|
2020-07-05 02:58:04 +00:00
|
|
|
# Needed for Linux - put shared libraries in the binary directory.
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
|
|
|
|
|
2020-05-16 03:10:31 +00:00
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
# Enable threads everywhere.
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
|
|
|
|
# Recursively include the source tree.
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(dep)
|
|
|
|
add_subdirectory(src)
|
2019-11-27 15:55:33 +00:00
|
|
|
|
2020-07-07 10:27:06 +00:00
|
|
|
if(ANDROID AND NOT BUILD_LIBRETRO_CORE)
|
2019-11-27 15:55:33 +00:00
|
|
|
add_subdirectory(android/app/src/cpp)
|
2019-12-31 06:17:17 +00:00
|
|
|
endif()
|