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 e6845fb commit d88c5e1Copy full SHA for d88c5e1
CMakeLists.txt
@@ -215,6 +215,10 @@ if (PHMAP_BUILD_EXAMPLES)
215
add_executable(ex_llil4map examples/llil4map.cc phmap.natvis)
216
target_include_directories(ex_llil4map PRIVATE ${Boost_INCLUDE_DIRS})
217
target_compile_features(ex_llil4map PUBLIC cxx_std_20)
218
+ find_package(TBB COMPONENTS tbb)
219
+ if (TBB_FOUND)
220
+ target_link_libraries(ex_llil4map PRIVATE TBB::tbb)
221
+ endif()
222
target_link_libraries(ex_llil4map PRIVATE OpenMP::OpenMP_CXX)
223
target_compile_options(ex_llil4map PRIVATE "${OpenMP_CXX_FLAGS}")
224
file(COPY examples/llil_utils DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
0 commit comments