Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
# Macro which contains all bits to setup the compile flags correctly.
|
|
|
|
#
|
|
|
|
# compile_flags()
|
|
|
|
#
|
|
|
|
macro(compile_flags)
|
2020-09-25 11:55:25 +00:00
|
|
|
if(MSVC)
|
2021-04-07 10:43:17 +00:00
|
|
|
if(VCPKG_TARGET_TRIPLET MATCHES "-static" AND NOT VCPKG_TARGET_TRIPLET MATCHES "-md")
|
|
|
|
# Switch to MT (static) instead of MD (dynamic) binary
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2021-04-07 10:43:17 +00:00
|
|
|
# For MSVC two generators are available
|
|
|
|
# - a command line generator (Ninja) using CMAKE_BUILD_TYPE to specify the
|
|
|
|
# configuration of the build tree
|
|
|
|
# - an IDE generator (Visual Studio) using CMAKE_CONFIGURATION_TYPES to
|
|
|
|
# specify all configurations that will be available in the generated solution
|
|
|
|
list(APPEND MSVC_CONFIGS "${CMAKE_BUILD_TYPE}" "${CMAKE_CONFIGURATION_TYPES}")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2021-04-07 10:43:17 +00:00
|
|
|
# Set usage of static runtime for all configurations
|
|
|
|
foreach(MSVC_CONFIG ${MSVC_CONFIGS})
|
|
|
|
string(TOUPPER "CMAKE_CXX_FLAGS_${MSVC_CONFIG}" MSVC_FLAGS)
|
|
|
|
string(REPLACE "/MD" "/MT" ${MSVC_FLAGS} "${${MSVC_FLAGS}}")
|
2022-01-03 17:18:08 +00:00
|
|
|
string(TOUPPER "CMAKE_C_FLAGS_${MSVC_CONFIG}" MSVC_FLAGS)
|
|
|
|
string(REPLACE "/MD" "/MT" ${MSVC_FLAGS} "${${MSVC_FLAGS}}")
|
2021-04-07 10:43:17 +00:00
|
|
|
endforeach()
|
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
|
|
|
# "If /Zc:rvalueCast is specified, the compiler follows section 5.4 of the
|
|
|
|
# C++11 standard". We need C++11 for the way we use threads.
|
|
|
|
add_compile_options(/Zc:rvalueCast)
|
|
|
|
|
2020-09-25 11:55:25 +00:00
|
|
|
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
2021-05-11 19:43:43 +00:00
|
|
|
add_compile_options(
|
|
|
|
/MP # Enable multi-threaded compilation.
|
|
|
|
/FC # Display the full path of source code files passed to the compiler in diagnostics.
|
|
|
|
)
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
|
|
|
# Add some -D flags for Debug builds. We cannot use add_definitions(), because
|
|
|
|
# it does not appear to support the $<> tags.
|
|
|
|
add_compile_options(
|
|
|
|
"$<$<CONFIG:Debug>:-D_DEBUG>"
|
2020-06-27 11:17:05 +00:00
|
|
|
"$<$<NOT:$<CONFIG:Debug>>:-D_FORTIFY_SOURCE=2>" # FORTIFY_SOURCE should only be used in non-debug builds (requires -O1+)
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
)
|
2020-09-25 11:55:25 +00:00
|
|
|
if(MINGW)
|
2020-06-27 23:18:28 +00:00
|
|
|
add_link_options(
|
|
|
|
"$<$<NOT:$<CONFIG:Debug>>:-fstack-protector>" # Prevent undefined references when _FORTIFY_SOURCE > 0
|
|
|
|
)
|
2021-12-28 20:08:09 +00:00
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
add_link_options(
|
|
|
|
"$<$<CONFIG:Debug>:-Wl,--disable-dynamicbase,--disable-high-entropy-va,--default-image-base-low>" # ASLR somehow breaks linking for x64 Debug builds
|
|
|
|
)
|
|
|
|
endif()
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
|
|
|
# Prepare a generator that checks if we are not a debug, and don't have asserts
|
|
|
|
# on. We need this later on to set some compile options for stable releases.
|
2020-06-27 18:27:21 +00:00
|
|
|
#set(IS_STABLE_RELEASE "$<AND:$<NOT:$<CONFIG:Debug>>,$<NOT:$<BOOL:${OPTION_USE_ASSERTS}>>>")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2020-09-25 11:55:25 +00:00
|
|
|
if(MSVC)
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
add_compile_options(/W3)
|
2022-09-13 10:27:49 +00:00
|
|
|
if(MSVC_VERSION GREATER 1929)
|
|
|
|
# Starting with version 19.30, there is an optimisation bug, see #9966 for details
|
|
|
|
# This flag disables the broken optimisation to work around the bug
|
|
|
|
add_compile_options(/d2ssa-rse-)
|
|
|
|
endif()
|
2020-09-25 11:55:25 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
add_compile_options(
|
|
|
|
-W
|
|
|
|
-Wall
|
|
|
|
-Wcast-qual
|
|
|
|
-Wextra
|
|
|
|
-Wsign-compare
|
|
|
|
-Wundef
|
|
|
|
-Wpointer-arith
|
|
|
|
-Wwrite-strings
|
|
|
|
-Wredundant-decls
|
|
|
|
-Wformat-security
|
|
|
|
-Wformat=2
|
|
|
|
-Winit-self
|
2022-01-02 20:34:40 +00:00
|
|
|
"$<$<COMPILE_LANGUAGE:CXX>:-Wnon-virtual-dtor>"
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
|
|
|
# Often parameters are unused, which is fine.
|
|
|
|
-Wno-unused-parameter
|
|
|
|
# We use 'ABCD' multichar for SaveLoad chunks identifiers
|
|
|
|
-Wno-multichar
|
|
|
|
|
|
|
|
# Compilers complains about that we break strict-aliasing.
|
|
|
|
# On most places we don't see how to fix it, and it doesn't
|
|
|
|
# break anything. So disable strict-aliasing to make the
|
|
|
|
# compiler all happy.
|
|
|
|
-fno-strict-aliasing
|
|
|
|
)
|
|
|
|
|
2020-06-27 18:28:54 +00:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
# Sensible default if no build type specified
|
|
|
|
add_compile_options(-O2 -DNDEBUG)
|
|
|
|
endif(NOT CMAKE_BUILD_TYPE)
|
|
|
|
|
2020-06-04 18:44:57 +00:00
|
|
|
# When we are a stable release (Release build + USE_ASSERTS not set),
|
|
|
|
# assertations are off, which trigger a lot of warnings. We disable
|
|
|
|
# these warnings for these releases.
|
2020-06-30 20:43:04 +00:00
|
|
|
#if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
# add_compile_options(
|
|
|
|
# "$<${IS_STABLE_RELEASE}:-Wno-unused-variable>"
|
|
|
|
# "$<${IS_STABLE_RELEASE}:-Wno-unused-but-set-parameter>"
|
|
|
|
# "$<${IS_STABLE_RELEASE}:-Wno-unused-but-set-variable>"
|
|
|
|
# )
|
|
|
|
#else (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
# add_compile_options(
|
|
|
|
# "$<${IS_STABLE_RELEASE}:-Wno-unused-variable>"
|
|
|
|
# "$<${IS_STABLE_RELEASE}:-Wno-unused-parameter>"
|
|
|
|
# )
|
|
|
|
#endif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2020-06-04 12:38:56 +00:00
|
|
|
# Ninja processes the output so the output from the compiler
|
|
|
|
# isn't directly to a terminal; hence, the default is
|
|
|
|
# non-coloured output. We can override this to get nicely
|
|
|
|
# coloured output, but since that might yield odd results with
|
|
|
|
# IDEs, we extract it to an option.
|
2020-09-25 11:55:25 +00:00
|
|
|
if(OPTION_FORCE_COLORED_OUTPUT)
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
2020-06-04 12:38:56 +00:00
|
|
|
add_compile_options (-fdiagnostics-color=always)
|
2020-09-25 11:55:25 +00:00
|
|
|
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
|
2020-06-04 12:38:56 +00:00
|
|
|
add_compile_options (-fcolor-diagnostics)
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2020-09-25 11:55:25 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
check_cxx_compiler_flag("-flifetime-dse=1" LIFETIME_DSE_FOUND)
|
|
|
|
|
|
|
|
add_compile_options(
|
|
|
|
# GCC 4.2+ automatically assumes that signed overflows do
|
|
|
|
# not occur in signed arithmetics, whereas we are not
|
|
|
|
# sure that they will not happen. It furthermore complains
|
|
|
|
# about its own optimized code in some places.
|
|
|
|
"-fno-strict-overflow"
|
|
|
|
|
|
|
|
# Prevent optimisation supposing enums are in a range specified by the standard
|
|
|
|
# For details, see http://gcc.gnu.org/PR43680
|
|
|
|
"-fno-tree-vrp"
|
|
|
|
|
|
|
|
# -flifetime-dse=2 (default since GCC 6) doesn't play
|
|
|
|
# well with our custom pool item allocator
|
|
|
|
"$<$<BOOL:${LIFETIME_DSE_FOUND}>:-flifetime-dse=1>"
|
|
|
|
)
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
2020-06-27 13:50:13 +00:00
|
|
|
|
2021-01-02 00:09:11 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
|
2021-01-07 16:04:01 +00:00
|
|
|
if (NOT CMAKE_OSX_ARCHITECTURES STREQUAL "arm64")
|
2021-01-02 00:09:11 +00:00
|
|
|
add_compile_options(
|
2021-02-01 17:07:34 +00:00
|
|
|
-fno-stack-check
|
2021-01-02 00:09:11 +00:00
|
|
|
)
|
2021-02-01 17:07:34 +00:00
|
|
|
|
2021-01-07 16:04:01 +00:00
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
check_cxx_compiler_flag("-mno-sse4" NO_SSE4_FOUND)
|
|
|
|
|
|
|
|
if(NO_SSE4_FOUND)
|
|
|
|
add_compile_options(
|
|
|
|
# Don't use SSE4 for general sources to increase compatibility.
|
|
|
|
-mno-sse4
|
|
|
|
)
|
|
|
|
endif()
|
2021-01-02 00:09:11 +00:00
|
|
|
endif()
|
2020-10-14 16:38:23 +00:00
|
|
|
endif()
|
2022-06-25 11:05:00 +00:00
|
|
|
|
|
|
|
if (OPTION_NO_WARN_UNINIT)
|
|
|
|
add_compile_options(-Wno-maybe-uninitialized -Wno-uninitialized)
|
|
|
|
endif (OPTION_NO_WARN_UNINIT)
|
2020-09-25 11:55:25 +00:00
|
|
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
add_compile_options(
|
|
|
|
-Wall
|
|
|
|
# warning #873: function ... ::operator new ... has no corresponding operator delete ...
|
|
|
|
-wd873
|
|
|
|
# warning #1292: unknown attribute "fallthrough"
|
|
|
|
-wd1292
|
|
|
|
# warning #1899: multicharacter character literal (potential portability problem)
|
|
|
|
-wd1899
|
|
|
|
# warning #2160: anonymous union qualifier is ignored
|
|
|
|
-wd2160
|
|
|
|
)
|
2020-09-25 11:55:25 +00:00
|
|
|
else()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
message(FATAL_ERROR "No warning flags are set for this compiler yet; please consider creating a Pull Request to add support for this compiler.")
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
|
2021-05-20 22:21:38 +00:00
|
|
|
if(NOT WIN32 AND NOT HAIKU)
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
# rdynamic is used to get useful stack traces from crash reports.
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rdynamic")
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
|
|
|
endmacro()
|