We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38bb857 commit 713864aCopy full SHA for 713864a
CMakeLists.txt
@@ -14,9 +14,9 @@ else (DEFINED ENV{BOOST_ROOT})
14
endif (DEFINED ENV{BOOST_ROOT})
15
16
if (MSVC)
17
- target_compile_options(_find_a_factor PUBLIC /std:c++17 /O3)
+ target_compile_options(_find_a_factor PUBLIC /O3 /std:c++17)
18
else (MSVC)
19
- target_compile_options(_find_a_factor PUBLIC -std=c++17 -O3 -lpthread)
+ target_compile_options(_find_a_factor PUBLIC -O3 -std=c++17 -lpthread)
20
endif (MSVC)
21
22
install(TARGETS _find_a_factor DESTINATION .)
0 commit comments