We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e597c21 commit 8b9fe7fCopy full SHA for 8b9fe7f
CMakeLists.txt
@@ -48,8 +48,8 @@ if (WITH_CUDA)
48
49
# check CUDA version
50
set(CUDA_VERSION ${CMAKE_CUDA_COMPILER_VERSION})
51
- if (CUDA_VERSION VERSION_LESS 9)
52
- message(FATAL_ERROR "CUDA version must be at least 9. Detected ${CUDA_VERSION}")
+ if (CUDA_VERSION VERSION_LESS 11)
+ message(FATAL_ERROR "CUDA version must be at least 11. Detected ${CUDA_VERSION}")
53
endif()
54
55
# specify target CUDA device architecture(s)
cxx/isce3/CMakeLists.txt
@@ -29,7 +29,7 @@ target_link_libraries(${LISCE} PRIVATE
29
)
30
31
target_compile_features(${LISCE} INTERFACE
32
- cxx_std_14
+ cxx_std_17
33
34
35
target_include_directories(${LISCE} PUBLIC
0 commit comments