CMake Nightly Date Stamp
[kiteware-cmake.git] / Tests / Cuda / MixedStandardLevels2 / CMakeLists.txt
blob9ef734b5c3c28f3a2c9c3f0042616815d92ad4d3
1 cmake_minimum_required(VERSION 3.18)
2 project(MixedStandardLevels2 CXX CUDA)
4 set(CMAKE_CXX_STANDARD 17) #this can decay
6 add_executable(MixedStandardLevels2 main.cu lib.cpp)
7 target_compile_features(MixedStandardLevels2 PUBLIC cuda_std_11)
9 if(APPLE)
10   # Help the static cuda runtime find the driver (libcuda.dyllib) at runtime.
11   set_property(TARGET MixedStandardLevels2 PROPERTY BUILD_RPATH ${CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES})
12 endif()