diff options
author | Raul Tambre <raul@tambre.ee> | 2020-03-27 18:52:39 (GMT) |
---|---|---|
committer | Raul Tambre <raul@tambre.ee> | 2020-04-15 14:55:41 (GMT) |
commit | f0931b07905a960c7dfbcc90e772219150c24951 (patch) | |
tree | defe47dc5d287e9db57bf33905b927547ec770bd /Tests/Cuda/ProperDeviceLibraries | |
parent | e98588aabad578a9b33aae05e77f6ec5b3ff2e46 (diff) | |
download | CMake-f0931b07905a960c7dfbcc90e772219150c24951.zip CMake-f0931b07905a960c7dfbcc90e772219150c24951.tar.gz CMake-f0931b07905a960c7dfbcc90e772219150c24951.tar.bz2 |
CUDA: Convert tests to use CUDA_ARCHITECTURES
Diffstat (limited to 'Tests/Cuda/ProperDeviceLibraries')
-rw-r--r-- | Tests/Cuda/ProperDeviceLibraries/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Cuda/ProperDeviceLibraries/CMakeLists.txt b/Tests/Cuda/ProperDeviceLibraries/CMakeLists.txt index cb47b09..fe28c3e 100644 --- a/Tests/Cuda/ProperDeviceLibraries/CMakeLists.txt +++ b/Tests/Cuda/ProperDeviceLibraries/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.13) project(ProperDeviceLibraries CXX CUDA) -string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_35,code=compute_35 -gencode arch=compute_35,code=sm_35") set(CMAKE_CUDA_STANDARD 11) +set(CMAKE_CUDA_ARCHITECTURES 35) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads) |