Skip to content

Commit

Permalink
fix: tbb->TBB::tbb in CMake lists. Under Mac this seems to lead to pr…
Browse files Browse the repository at this point in the history
…oblems....

Signed-off-by: Franz R. Sattler <[email protected]>
  • Loading branch information
Franz R. Sattler committed Jan 17, 2025
1 parent d340be1 commit 57efcfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DiFfRG/cmake/setup_build_system.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ if(USE_CUDA AND CMAKE_CUDA_COMPILER)
target_link_libraries(${TARGET} spdlog::spdlog)
target_link_libraries(${TARGET} rmm::rmm)
target_link_libraries(${TARGET} ${Boost_LIBRARIES})
target_link_libraries(${TARGET} tbb)
target_link_libraries(${TARGET} TBB::tbb)
endfunction()

message(STATUS "CUDA support enabled.")
Expand All @@ -284,7 +284,7 @@ else()

target_link_libraries(${TARGET} GSL::gsl)
target_link_libraries(${TARGET} Eigen3)
target_link_libraries(${TARGET} tbb)
target_link_libraries(${TARGET} TBB::tbb)
target_link_libraries(${TARGET} spdlog::spdlog)
target_link_libraries(${TARGET} ${Boost_LIBRARIES})
endfunction()
Expand Down

0 comments on commit 57efcfe

Please sign in to comment.