summaryrefslogtreecommitdiff
path: root/Tests/Cuda/MixedStandardLevels1
diff options
context:
space:
mode:
authorRaul Tambre <raul@tambre.ee>2020-03-27 20:52:39 +0200
committerRaul Tambre <raul@tambre.ee>2020-04-15 17:55:41 +0300
commitf0931b07905a960c7dfbcc90e772219150c24951 (patch)
treedefe47dc5d287e9db57bf33905b927547ec770bd /Tests/Cuda/MixedStandardLevels1
parente98588aabad578a9b33aae05e77f6ec5b3ff2e46 (diff)
downloadcmake-f0931b07905a960c7dfbcc90e772219150c24951.tar.gz
CUDA: Convert tests to use CUDA_ARCHITECTURES
Diffstat (limited to 'Tests/Cuda/MixedStandardLevels1')
-rw-r--r--Tests/Cuda/MixedStandardLevels1/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/Cuda/MixedStandardLevels1/CMakeLists.txt b/Tests/Cuda/MixedStandardLevels1/CMakeLists.txt
index b03e51e3e2..e40ffa6daa 100644
--- a/Tests/Cuda/MixedStandardLevels1/CMakeLists.txt
+++ b/Tests/Cuda/MixedStandardLevels1/CMakeLists.txt
@@ -1,10 +1,9 @@
cmake_minimum_required(VERSION 3.7)
project(MixedStandardLevels1 CXX CUDA)
-string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=compute_30")
-
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CUDA_STANDARD 11)
+set(CMAKE_CUDA_ARCHITECTURES 30)
add_executable(MixedStandardLevels1 main.cu lib.cpp)