diff options
Diffstat (limited to 'cmake/cmake.d/04-build_options.cmake')
-rw-r--r-- | cmake/cmake.d/04-build_options.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/cmake.d/04-build_options.cmake b/cmake/cmake.d/04-build_options.cmake index c48e8cd..d1b25f4 100644 --- a/cmake/cmake.d/04-build_options.cmake +++ b/cmake/cmake.d/04-build_options.cmake @@ -77,12 +77,12 @@ add_compile_options(-fPIC) ################################################## add_compile_options($<$<OR:$<CONFIG:DEBUG>,$<CONFIG:PROFILING>,$<CONFIG:CCOV>>:-g>) -add_compile_options($<$<CONFIG:DEBUG>:-pg>) add_compile_options($<$<CONFIG:DEBUG>:-ggdb>) add_compile_options($<$<CONFIG:CCOV>:--coverage>) add_compile_options($<$<CONFIG:DEBUG>:-Og>) add_compile_options($<$<CONFIG:PROFILING>:-O0>) +add_compile_options($<$<CONFIG:PROFILING>:-pg>) add_compile_options($<$<OR:$<CONFIG:CCOV>,$<CONFIG:PROFILING>>:-O2>) add_compile_options($<$<OR:$<CONFIG:DEBUG>,$<CONFIG:PROFILING>>:-Wp,-U_FORTIFY_SOURCE>) |