We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4be468 commit 962e132Copy full SHA for 962e132
rpp/CMakeLists.txt
@@ -70,6 +70,12 @@ target_compile_definitions(rpp PUBLIC
70
$<$<CONFIG:MinSizeRel>:RPP_RELEASE_BUILD>
71
)
72
73
+set_property(TARGET rpp PROPERTY INTERPROCEDURAL_OPTIMIZATION
74
+ $<$<CONFIG:Debug>:FALSE>
75
+ $<$<CONFIG:RelWithDebInfo>:FALSE>
76
+ $<$<CONFIG:Release>:TRUE>
77
+ $<$<CONFIG:MinSizeRel>:TRUE>)
78
+
79
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
80
set(CLANG TRUE)
81
endif()
0 commit comments