How to enable C++17 in CMake(如何在 CMake 中启用 C++17)
问题描述
我使用的是 VS 15.3,它支持集成的 CMake 3.8.如何在不为每个特定编译器编写标志的情况下以 C++17 为目标?我当前的全局设置不起作用:
I'm using VS 15.3, which supports integrated CMake 3.8. How can I target C++17 without writing flags for each specific compilers? My current global settings don't work:
# https://cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# expected behaviour
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++lastest")
我希望 CMake 在生成 VS 解决方案文件时添加/std:c++lastest"或等效项,但未找到 c++17 标志,导致编译器错误:
I expected CMake to add "/std:c++lastest" or equivalents when generating VS solution files, but no c++17 flags was found, resulted in compiler error:
C1189 #error: class template optional is only available with C++17.
推荐答案
您的方法是正确的,但它不适用于 3.10 之前的 CMake 版本的 MSVC.
Your approach is the correct one, but it will not work for MSVC on versions of CMake prior to 3.10.
来自 CMake 3.9 文档:
对于没有标准级别概念的编译器,例如 MSVC,这不起作用.
For compilers that have no notion of a standard level, such as MSVC, this has no effect.
简而言之,CMake 尚未更新以适应添加到 VC++ 2017 的标准标志.
In short, CMake haven't been updated to accommodate for the standard flags added to VC++ 2017.
您必须检测是否使用了 VC++ 2017(或更高版本)并暂时自行添加相应的标志.
You have to detect if VC++ 2017 (or later) is used and add the corresponding flags yourself for now.
在 CMake 3.10(及更高版本)中,此问题已针对较新版本的 VC++ 修复.请参阅3.10 文档.
In CMake 3.10 (and later) this have been fixed for newer version of VC++. See the 3.10 documentation.
这篇关于如何在 CMake 中启用 C++17的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 CMake 中启用 C++17
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01