mirror of
https://github.com/mpusz/mp-units.git
synced 2025-06-24 08:41:34 +02:00
build: setting of "-Wno-unused-result" flag moved to a different CMake file
This commit is contained in:
@ -84,10 +84,3 @@ endif()
|
||||
# add unit tests
|
||||
enable_testing()
|
||||
add_subdirectory(test)
|
||||
|
||||
# TODO remove this hack when clang-20.2 is released
|
||||
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 20
|
||||
AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 20.2
|
||||
)
|
||||
target_compile_options(mp-units-core PUBLIC "-Wno-unused-result")
|
||||
endif()
|
||||
|
@ -156,6 +156,15 @@ target_compile_definitions(
|
||||
${projectPrefix}HOSTED=$<NOT:$<BOOL:${${projectPrefix}API_FREESTANDING}>>
|
||||
)
|
||||
|
||||
|
||||
# TODO remove this hack when clang-20.2 is released
|
||||
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 20
|
||||
AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 20.2
|
||||
)
|
||||
target_compile_options(mp-units-core ${${projectPrefix}TARGET_SCOPE} "-Wno-unused-result")
|
||||
endif()
|
||||
|
||||
# time-trace
|
||||
if(${projectPrefix}DEV_TIME_TRACE STREQUAL "ALL")
|
||||
target_compile_options(mp-units-core ${${projectPrefix}TARGET_SCOPE} "-ftime-trace")
|
||||
elseif(${projectPrefix}DEV_TIME_TRACE STREQUAL "MODULES")
|
||||
|
Reference in New Issue
Block a user