mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
- Add export sets - Add install rules - Remove manual CPM import, port to rapids_cpm_*, etc - Organize CMake code into cmake/*.cmake files. - NVBench is now a shared library.
15 lines
337 B
CMake
15 lines
337 B
CMake
macro(nvbench_generate_exports)
|
|
rapids_export(BUILD NVBench
|
|
EXPORT_SET nvbench-targets
|
|
NAMESPACE "nvbench::"
|
|
GLOBAL_TARGETS nvbench main
|
|
LANGUAGES CUDA CXX
|
|
)
|
|
rapids_export(INSTALL NVBench
|
|
EXPORT_SET nvbench-targets
|
|
NAMESPACE "nvbench::"
|
|
GLOBAL_TARGETS nvbench main
|
|
LANGUAGES CUDA CXX
|
|
)
|
|
endmacro()
|