2022-08-24 09:12:38 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-10-04 03:54:09 +00:00
|
|
|
project(duckstation C CXX)
|
2019-09-09 07:01:26 +00:00
|
|
|
|
2023-01-30 13:21:52 +00:00
|
|
|
# Policy settings.
|
|
|
|
cmake_policy(SET CMP0069 NEW)
|
|
|
|
set(CMAKE_POLICY_DEFAULT_CMP0069 NEW)
|
|
|
|
|
2024-04-20 10:26:53 +00:00
|
|
|
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
|
|
|
message(FATAL_ERROR "DuckStation does not support in-tree builds. Please make a build directory that is not the source"
|
|
|
|
"directory and generate your CMake project there using either `cmake -B build_directory` or by "
|
|
|
|
"running cmake from the build directory.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug|Devel|MinSizeRel|RelWithDebInfo|Release")
|
|
|
|
message(STATUS "CMAKE_BUILD_TYPE not set, defaulting to Release.")
|
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
|
|
endif()
|
|
|
|
|
2024-02-24 11:40:56 +00:00
|
|
|
message(STATUS "CMake Version: ${CMAKE_VERSION}")
|
|
|
|
message(STATUS "CMake System Name: ${CMAKE_SYSTEM_NAME}")
|
|
|
|
message(STATUS "Build Type: ${CMAKE_BUILD_TYPE}")
|
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/")
|
2023-09-30 05:39:52 +00:00
|
|
|
include(DuckStationUtils)
|
2019-11-23 08:55:13 +00:00
|
|
|
|
2024-04-20 10:26:53 +00:00
|
|
|
# Detect system attributes.
|
|
|
|
detect_operating_system()
|
|
|
|
detect_compiler()
|
|
|
|
detect_architecture()
|
|
|
|
detect_page_size()
|
2024-05-14 13:50:26 +00:00
|
|
|
detect_cache_line_size()
|
2021-02-28 09:01:16 +00:00
|
|
|
|
2024-04-20 10:26:53 +00:00
|
|
|
# Build options. Depends on system attributes.
|
|
|
|
include(DuckStationBuildOptions)
|
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}}")
|
|
|
|
|
2021-05-10 03:59:52 +00:00
|
|
|
# Enable intrinsic functions, disable minimal rebuild, UTF-8 source, set __cplusplus version.
|
|
|
|
set(${config} "${${config}} /Oi /Gm- /utf-8 /Zc:__cplusplus")
|
2019-09-09 07:01:26 +00:00
|
|
|
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")
|
|
|
|
endif()
|
|
|
|
|
2023-09-05 10:57:18 +00:00
|
|
|
# Warning disables.
|
2024-04-20 10:26:53 +00:00
|
|
|
if(COMPILER_CLANG OR COMPILER_CLANG_CL OR COMPILER_GCC)
|
|
|
|
include(CheckCXXFlag)
|
|
|
|
check_cxx_flag(-Wall COMPILER_SUPPORTS_WALL)
|
|
|
|
check_cxx_flag(-Wno-class-memaccess COMPILER_SUPPORTS_MEMACCESS)
|
|
|
|
check_cxx_flag(-Wno-invalid-offsetof COMPILER_SUPPORTS_OFFSETOF)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-switch")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-switch")
|
2019-09-09 07:01:26 +00:00
|
|
|
endif()
|
|
|
|
|
2023-01-30 13:21:52 +00:00
|
|
|
# We don't need exceptions, disable them to save a bit of code size.
|
2023-09-02 03:41:41 +00:00
|
|
|
if(MSVC)
|
|
|
|
string(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
string(REPLACE "/GR" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
2023-01-30 13:21:52 +00:00
|
|
|
|
2023-09-02 03:41:41 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_HAS_EXCEPTIONS=0 /permissive-")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-rtti")
|
|
|
|
endif()
|
2023-01-30 13:21:52 +00:00
|
|
|
|
2020-05-16 03:10:31 +00:00
|
|
|
# Write binaries to a seperate directory.
|
2024-04-20 10:26:53 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
|
2019-09-09 07:01:26 +00:00
|
|
|
|
2021-04-07 08:28:06 +00:00
|
|
|
# Enable large file support on Linux 32-bit platforms.
|
2024-04-20 10:26:53 +00:00
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
2021-04-07 08:28:06 +00:00
|
|
|
add_definitions("-D_FILE_OFFSET_BITS=64")
|
|
|
|
endif()
|
|
|
|
|
2024-04-20 10:26:53 +00:00
|
|
|
# Optional unit tests.
|
2023-09-02 06:54:51 +00:00
|
|
|
if(BUILD_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
endif()
|
2021-04-07 08:28:06 +00:00
|
|
|
|
2023-09-23 12:19:11 +00:00
|
|
|
# Prevent fmt from being built with exceptions, or being thrown at call sites.
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DFMT_EXCEPTIONS=0")
|
|
|
|
|
2024-04-11 03:46:25 +00:00
|
|
|
# Use C++20.
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2023-09-05 10:57:18 +00:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
# Recursively include the source tree.
|
2024-02-03 07:12:40 +00:00
|
|
|
include(DuckStationDependencies)
|
2019-09-09 07:01:26 +00:00
|
|
|
add_subdirectory(dep)
|
|
|
|
add_subdirectory(src)
|
2019-11-27 15:55:33 +00:00
|
|
|
|
2024-04-20 10:26:53 +00:00
|
|
|
# Output build summary.
|
|
|
|
include(DuckStationBuildSummary)
|