Set CXX-standard to c++17 when combining C++ and CUDA in CMakeLists(在 CMakeLists 中结合 C++ 和 CUDA 时将 CXX-standard 设置为 c++17)
问题描述
根据 CMake 的文档我只需要写
According to the documentation of CMake I just have to write
project(${PROJECT_NAME} LANGUAGES CUDA CXX)
当我想在一个项目中结合 CUDA 文件和本机 C++ 文件时.然后我不必再调用 cuda_add_executable()
,而是调用 add_executable
,CMake 应该自己解决所有问题.这很好用,除非我想为 C++ 代码指定一个标准(通过使用 set(CMAKE_CXX_STANDARD 17)
).然后我收到错误消息
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
是否有替代解决方案,或者我应该恢复到 find_package(CUDA)
和 cuda_add_executable
?
Is there an alternative solution, or should I rather revert to find_package(CUDA)
and cuda_add_executable
?
推荐答案
根据@talonmies 的评论,我找到了解决该问题的方法,方法是为每种语言显式设置变量,即 CUDA
和CXX
:
Based on the comment from @talonmies I found a solution for that problem by setting the variables explicitly for each language, i.e. CUDA
and CXX
:
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CUDA_STANDARD 14)
set(CMAKE_CUDA_STANDARD_REQUIRED TRUE)
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
现在纯C++
-文件按照C++17编译,CUDA
-文件按照C++14编译.
Now the pure C++
-files are compiled according to C++17, and the CUDA
-files are compiled according to C++14.
这篇关于在 CMakeLists 中结合 C++ 和 CUDA 时将 CXX-standard 设置为 c++17的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 CMakeLists 中结合 C++ 和 CUDA 时将 CXX-standard 设置为 c++17


- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01