We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9829d2d commit d6063b8Copy full SHA for d6063b8
cpp/CMakeLists.txt
@@ -158,6 +158,8 @@ else()
158
find_package(RAFT REQUIRED)
159
endif()
160
161
+find_package(TBB REQUIRED)
162
+
163
FetchContent_Declare(
164
papilo
165
GIT_REPOSITORY "https://github.com/scipopt/papilo.git"
@@ -251,6 +253,7 @@ target_link_libraries(cuopt
251
253
CCCL::CCCL
252
254
raft::raft
255
cuopt::mps_parser
256
+ TBB::tbb
257
PRIVATE
258
${CUOPT_PRIVATE_CUDA_LIBS}
259
)
python/cuopt/CMakeLists.txt
@@ -33,6 +33,7 @@ project(
33
34
find_package(cuopt ${cuopt_version})
35
find_package(mps_parser ${cuopt_version})
36
37
38
include(rapids-cython-core)
39
rapids_cython_init()
0 commit comments