We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86c27af commit fc5c9e6Copy full SHA for fc5c9e6
benchmarks/automatic/CMakeLists.txt
@@ -30,11 +30,6 @@ if (ENABLE_OPTIMIZATIONS)
30
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
31
target_compile_options(benchmarks PRIVATE -DTBB_ENABLE_IPO=off -march=native -mavx2 -O3 -ffast-math)
32
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
33
- target_compile_options(benchmarks PRIVATE
34
- $<$<CONFIG:Debug>:/Od /Zi /D_DEBUG>
35
- )
36
37
- $<$<CONFIG:Release>: /O2 /fp:fast>
38
+ target_compile_options(benchmarks PRIVATE /O2 /fp:fast)
39
endif()
40
0 commit comments