Skip to content

Commit

Permalink
RMM doesn't require the CUDA language to be enabled by consumers (#737)
Browse files Browse the repository at this point in the history
This allows consumers of libraries such as `cudf` that offer a C++ interface to not require the CUDA language be enabled.

Authors:
  - Robert Maynard (@robertmaynard)

Approvers:
  - Keith Kraus (@kkraus14)

URL: #737
  • Loading branch information
robertmaynard authored Mar 24, 2021
1 parent dce33aa commit 1de6b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ endif(CUDA_STATIC_RUNTIME)

target_link_libraries(rmm INTERFACE rmm::Thrust)
target_link_libraries(rmm INTERFACE spdlog::spdlog_header_only)
target_compile_features(rmm INTERFACE cxx_std_14 cuda_std_14)
target_compile_features(rmm INTERFACE cxx_std_14 $<BUILD_INTERFACE:cuda_std_14>)

# Set logging level. Must go before including gtests and benchmarks.

Expand Down

0 comments on commit 1de6b83

Please sign in to comment.