Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work-around glog dependency issues for C++ examples #2156

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ set(OPTION_PREFIX "MORPHEUS")
cmake_policy(SET CMP0144 NEW)

find_package(morpheus REQUIRED)
find_package(glog REQUIRED) # work-around for #2149

morpheus_utils_initialize_cpm(MORPHEUS_CACHE_DIR)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ morpheus_add_pybind11_module(pass_thru_cpp
morpheus
CUDA::nvtx3
cudf::cudf
glog::glog
)

list(POP_BACK CMAKE_MESSAGE_CONTEXT)
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ set(OPTION_PREFIX "MORPHEUS")
cmake_policy(SET CMP0144 NEW)

find_package(morpheus REQUIRED)
find_package(glog REQUIRED)

morpheus_utils_initialize_cpm(MORPHEUS_CACHE_DIR)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ morpheus_add_pybind11_module(rabbitmq_cpp_stage
morpheus
CUDA::nvtx3
cudf::cudf
glog::glog
rabbitmq
SimpleAmqpClient
)
Expand Down
Loading