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 2a533c9 commit d7627e6Copy full SHA for d7627e6
CMakeLists.txt
@@ -23,7 +23,7 @@ endif( USE_MPI )
23
24
############################### OpenMP ##############################
25
option(USE_OMP OFF)
26
-if( USE_OMP OR USE_SEQ )
+if( USE_OMP )
27
find_package( OpenMP )
28
if( OpenMP_FOUND )
29
include_directories( ${OpenMP_C_INCLUDE_DIRS} ${OpenMP_CXX_INCLUDE_DIRS} )
@@ -43,7 +43,7 @@ if( USE_OMP OR USE_SEQ )
43
message(FATAL_ERROR "OpenMP NOT FOUND")
44
endif()
45
endif( OpenMP_FOUND )
46
-endif( USE_OMP OR USE_SEQ )
+endif( USE_OMP )
47
48
############################ std::thread ############################
49
option(USE_STL OFF)
0 commit comments