Skip to content

Commit 7eb084d

Browse files
committed
lowercase OpenMP in CMakeLists.txt
1 parent e811db7 commit 7eb084d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ if (PHMAP_BUILD_EXAMPLES)
208208
# -------------------------------------------------------------
209209
find_package(OpenMP)
210210
find_package(Boost 1.70.0)
211-
if (OPENMP_FOUND AND Boost_FOUND AND "cxx_std_20" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
211+
if (OpenMP_FOUND AND Boost_FOUND AND "cxx_std_20" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
212212
add_executable(ex_llil4map examples/llil4map.cc phmap.natvis)
213213
target_include_directories(ex_llil4map PRIVATE ${Boost_INCLUDE_DIRS})
214214
target_compile_features(ex_llil4map PUBLIC cxx_std_20)

0 commit comments

Comments
 (0)