Files
nvbench/CMakeLists.txt
Allison Vacanti 48bd9c9dc4 Add fmt library.
2020-12-21 17:45:36 -05:00

32 lines
1.0 KiB
CMake

include(CPM)
CPMAddPackage(
NAME benchmark
GITHUB_REPOSITORY google/benchmark
VERSION 1.5.2
OPTIONS
"BENCHMARK_ENABLE_TESTING Off"
# Note from cucollections:
# The REGEX feature test fails when gbench's cmake is run under CPM w/ gcc5.4 because it doesn't assume C++11
# Additionally, attempting to set the CMAKE_CXX_VERSION here doesn't propogate to the feature test build
# Therefore, we just disable the feature test and assume platforms we care about have a regex impl available
"RUN_HAVE_STD_REGEX 0"
)
CPMAddPackage(
NAME fmt
GITHUB_REPOSITORY fmtlib/fmt
GIT_TAG 7.1.3
)
# Why does CMake make it so difficult to enable cuda C++17 with interface
# properties...Resorting to brute force to unblock.
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAG} -std=c++17")
add_library(nvbench INTERFACE)
target_include_directories(nvbench INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
target_link_libraries(nvbench INTERFACE benchmark_main)
set_target_properties(nvbench PROPERTIES INTERFACE_COMPILE_FEATURES cuda_std_17)
add_subdirectory(testing)