From e60c1f84a7e13577a82046b02b214f9466d20a7c Mon Sep 17 00:00:00 2001 From: Naios Date: Tue, 31 Oct 2017 01:29:51 +0100 Subject: Build: Use interface targets for inheriting flags and definitions * Remove the usage of global flags and definitions set through the CMAKE_CXX_FLAGS variable. * Use cmake target compile features for setting the CXX standard automatically. * Make C++14 globally available in the project * Closes #21033 --- cmake/platform/unix/settings.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cmake/platform/unix') diff --git a/cmake/platform/unix/settings.cmake b/cmake/platform/unix/settings.cmake index 79b426d7e03..0d38c6886a5 100644 --- a/cmake/platform/unix/settings.cmake +++ b/cmake/platform/unix/settings.cmake @@ -32,5 +32,7 @@ elseif(CMAKE_C_COMPILER MATCHES "icc") elseif(CMAKE_C_COMPILER MATCHES "clang" OR CMAKE_C_COMPILER_ID MATCHES "Clang") include(${CMAKE_SOURCE_DIR}/cmake/compiler/clang/settings.cmake) else() - add_definitions(-D_BUILD_DIRECTIVE='"${CMAKE_BUILD_TYPE}"') + target_compile_definitions(trinity-compile-option-interface + INTERFACE + -D_BUILD_DIRECTIVE="${CMAKE_BUILD_TYPE}") endif() -- cgit v1.2.3