2014-02-15 18:17:58 -05:00
|
|
|
macro (add_flags_lnk FLAGS)
|
2014-05-10 08:03:36 -04:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${FLAGS}")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} ${FLAGS}")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_COVERAGE "${CMAKE_EXE_LINKER_FLAGS_COVERAGE} ${FLAGS}")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${FLAGS}")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${FLAGS}")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS_DEBUG "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} ${FLAGS}")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS_COVERAGE "${CMAKE_SHARED_LINKER_FLAGS_COVERAGE} ${FLAGS}")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} ${FLAGS}")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${FLAGS}")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS_DEBUG "${CMAKE_MODULE_LINKER_FLAGS_DEBUG} ${FLAGS}")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS_COVERAGE "${CMAKE_MODULE_LINKER_FLAGS_COVERAGE} ${FLAGS}")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS_RELEASE "${CMAKE_MODULE_LINKER_FLAGS_RELEASE} ${FLAGS}")
|
2014-02-15 18:17:58 -05:00
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(add_flags_cxx FLAGS)
|
2015-05-30 08:32:22 -04:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${FLAGS}")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${FLAGS}")
|
2014-02-15 18:17:58 -05:00
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(enable_profile)
|
2014-02-16 06:37:31 -05:00
|
|
|
# Declare the flags used for profiling builds:
|
|
|
|
if (MSVC)
|
2014-05-23 05:22:48 -04:00
|
|
|
set (CXX_PROFILING "/Zi")
|
|
|
|
set (LNK_PROFILING "/PROFILE /DEBUG")
|
2014-02-16 06:37:31 -05:00
|
|
|
else()
|
|
|
|
set (CXX_PROFILING "-pg")
|
|
|
|
set (LNK_PROFILING "-pg")
|
|
|
|
endif()
|
2014-02-15 18:17:58 -05:00
|
|
|
|
|
|
|
|
2014-02-16 06:37:31 -05:00
|
|
|
# Declare the profiling configurations:
|
|
|
|
SET(CMAKE_CXX_FLAGS_DEBUGPROFILE
|
2014-05-10 08:03:36 -04:00
|
|
|
"${CMAKE_CXX_FLAGS_DEBUG} ${CXX_PROFILING}"
|
2014-02-16 06:37:31 -05:00
|
|
|
CACHE STRING "Flags used by the C++ compiler during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_C_FLAGS_DEBUGPROFILE
|
|
|
|
"${CMAKE_C_FLAGS_DEBUG} ${CXX_PROFILING}"
|
|
|
|
CACHE STRING "Flags used by the C compiler during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_EXE_LINKER_FLAGS_DEBUGPROFILE
|
|
|
|
"${CMAKE_EXE_LINKER_FLAGS_DEBUG} ${LNK_PROFILING}"
|
|
|
|
CACHE STRING "Flags used for linking binaries during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_SHARED_LINKER_FLAGS_DEBUGPROFILE
|
|
|
|
"${CMAKE_SHARED_LINKER_FLAGS_DEBUG} ${LNK_PROFILING}"
|
|
|
|
CACHE STRING "Flags used by the shared libraries linker during profile builds."
|
|
|
|
FORCE )
|
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
CMAKE_CXX_FLAGS_DEBUGPROFILE
|
|
|
|
CMAKE_C_FLAGS_DEBUGPROFILE
|
|
|
|
CMAKE_EXE_LINKER_FLAGS_DEBUGPROFILE
|
|
|
|
CMAKE_SHARED_LINKER_FLAGS_DEBUGPROFILE )
|
|
|
|
|
|
|
|
SET(CMAKE_CXX_FLAGS_RELEASEPROFILE
|
|
|
|
"${CMAKE_CXX_FLAGS_RELEASE} ${CXX_PROFILING}"
|
|
|
|
CACHE STRING "Flags used by the C++ compiler during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_C_FLAGS_RELEASEPROFILE
|
|
|
|
"${CMAKE_C_FLAGS_RELEASE} ${CXX_PROFILING}"
|
|
|
|
CACHE STRING "Flags used by the C compiler during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_EXE_LINKER_FLAGS_RELEASEPROFILE
|
|
|
|
"${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${LNK_PROFILING}"
|
|
|
|
CACHE STRING "Flags used for linking binaries during profile builds."
|
|
|
|
FORCE )
|
|
|
|
SET(CMAKE_SHARED_LINKER_FLAGS_RELEASEPROFILE
|
|
|
|
"${CMAKE_SHARED_LINKER_FLAGS_RELEASE} ${LNK_PROFILING}"
|
|
|
|
CACHE STRING "Flags used by the shared libraries linker during profile builds."
|
|
|
|
FORCE )
|
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
CMAKE_CXX_FLAGS_RELEASEPROFILE
|
|
|
|
CMAKE_C_FLAGS_RELEASEPROFILE
|
|
|
|
CMAKE_EXE_LINKER_FLAGS_RELEASEPROFILE
|
|
|
|
CMAKE_SHARED_LINKER_FLAGS_RELEASEPROFILE )
|
|
|
|
# The configuration types need to be set after their respective c/cxx/linker flags and before the project directive
|
2014-05-28 06:49:36 -04:00
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_CONFIGURATION_TYPES "Debug;Release;DebugProfile;ReleaseProfile" CACHE STRING "" FORCE)
|
|
|
|
else()
|
|
|
|
set(CMAKE_CONFIGURATION_TYPES "Debug;Release;DebugProfile;ReleaseProfile;Coverage" CACHE STRING "" FORCE)
|
|
|
|
endif()
|
2014-02-15 18:17:58 -05:00
|
|
|
endmacro()
|
2014-07-22 18:36:13 -04:00
|
|
|
|
2020-05-27 18:48:49 -04:00
|
|
|
function(set_global_flags)
|
|
|
|
if(MSVC)
|
|
|
|
# Make build use multiple threads under MSVC:
|
|
|
|
add_compile_options(/MP)
|
|
|
|
|
|
|
|
# Make build use Unicode:
|
|
|
|
add_compile_definitions(UNICODE _UNICODE)
|
|
|
|
else()
|
|
|
|
# TODO: is this needed? NDEBUG is standard. Also, why are we using _DEBUG?
|
|
|
|
# Add the preprocessor macros used for distinguishing between debug and release builds (CMake does this automatically for MSVC):
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_COVERAGE "${CMAKE_CXX_FLAGS_COVERAGE} -D_DEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS_COVERAGE} -D_DEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNDEBUG")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Allow for a forced 32-bit build under 64-bit OS:
|
|
|
|
if (FORCE_32)
|
|
|
|
add_compile_options(-m32)
|
|
|
|
add_link_options(-m32)
|
|
|
|
endif()
|
2014-07-22 18:36:13 -04:00
|
|
|
|
2020-05-27 18:48:49 -04:00
|
|
|
# Have the compiler generate code specifically targeted at the current machine on Linux:
|
|
|
|
if(LINUX AND NOT NO_NATIVE_OPTIMIZATION)
|
|
|
|
add_compile_options(-march=native)
|
2020-05-21 18:52:19 -04:00
|
|
|
endif()
|
2020-05-27 18:48:49 -04:00
|
|
|
endfunction()
|
|
|
|
|
2020-07-06 19:04:32 -04:00
|
|
|
function(set_exe_flags TARGET)
|
2020-05-27 18:48:49 -04:00
|
|
|
if (MSVC)
|
|
|
|
# TODO: MSVC level 4, warnings as errors
|
|
|
|
return ()
|
|
|
|
endif()
|
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
target_compile_options(
|
2020-05-27 18:48:49 -04:00
|
|
|
${TARGET} PRIVATE
|
2014-07-22 18:36:13 -04:00
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
# We use a signed char (fixes #640 on RasPi)
|
|
|
|
# TODO: specify this in code, not a compile flag:
|
|
|
|
-fsigned-char
|
2015-05-24 22:07:31 -04:00
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
# We support non-IEEE 754 FPUs so can make no guarantees about error:
|
|
|
|
-ffast-math
|
2014-02-16 06:37:31 -05:00
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
# All warnings:
|
|
|
|
-Wall -Wextra
|
2020-07-12 18:38:08 -04:00
|
|
|
|
|
|
|
# Excessive amount of logspam, disable for now:
|
|
|
|
-Wno-unused-parameter
|
2020-05-21 18:52:19 -04:00
|
|
|
)
|
2015-06-01 18:26:57 -04:00
|
|
|
|
2020-10-05 06:27:14 -04:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
2020-05-21 18:52:19 -04:00
|
|
|
target_compile_options(
|
2020-05-27 18:48:49 -04:00
|
|
|
${TARGET} PRIVATE
|
2020-05-21 18:52:19 -04:00
|
|
|
|
|
|
|
# Warnings-as-errors only on Clang for now:
|
|
|
|
-Werror
|
|
|
|
|
2020-07-06 19:04:32 -04:00
|
|
|
# TODO: actually fix the warnings instead of disabling them
|
|
|
|
# or at least disable on a file-level basis:
|
2020-07-12 18:38:08 -04:00
|
|
|
-Wno-missing-noreturn -Wno-padded -Wno-implicit-fallthrough
|
2020-07-06 19:04:32 -04:00
|
|
|
-Wno-double-promotion
|
|
|
|
|
|
|
|
# This is a pretty useless warning, we've already got -Wswitch which is what we need:
|
|
|
|
-Wno-switch-enum
|
|
|
|
|
2020-05-21 18:52:19 -04:00
|
|
|
# Weverything with Clang exceptions:
|
2020-10-05 08:09:42 -04:00
|
|
|
-Weverything -Wno-exit-time-destructors -Wno-error=disabled-macro-expansion
|
|
|
|
-Wno-weak-vtables -Wno-string-conversion -Wno-c++98-compat-pedantic -Wno-documentation
|
|
|
|
-Wno-documentation-unknown-command -Wno-reserved-id-macro -Wno-error=unused-command-line-argument
|
2020-05-21 18:52:19 -04:00
|
|
|
)
|
2020-10-05 06:27:14 -04:00
|
|
|
|
2020-10-05 08:09:42 -04:00
|
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 7)
|
|
|
|
target_compile_options(
|
|
|
|
${TARGET} PRIVATE
|
|
|
|
|
|
|
|
# We aren't using C++11:
|
|
|
|
-Wno-return-std-move-in-c++11
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 10)
|
|
|
|
target_compile_options(
|
|
|
|
${TARGET} PRIVATE
|
|
|
|
|
|
|
|
# int to float conversions happen a lot, not worth fixing all warnings:
|
|
|
|
-Wno-implicit-int-float-conversion
|
|
|
|
)
|
|
|
|
endif()
|
2020-05-21 18:52:19 -04:00
|
|
|
endif()
|
2020-05-27 18:48:49 -04:00
|
|
|
endfunction()
|