According to the documentation of CMake I just have to write
project(${PROJECT_NAME} LANGUAGES CUDA CXX)
when I would like to combine CUDA-files and native C++-files in one project. Then I do not have to call cuda_add_executable()
anymore, but rather add_executable
, and CMake should figure out everything on its own. This works fine, unless I would like to specify a standard for C++-code (by using set(CMAKE_CXX_STANDARD 17)
). Then I get the error message
Target requires the language dialect "CUDA17" (with compiler extensions), but CMake does not know the compile flags to use to enable it
Is there an alternative solution, or should I rather revert to find_package(CUDA)
and cuda_add_executable
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…