Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8063951
  • 博文数量: 594
  • 博客积分: 13065
  • 博客等级: 上将
  • 技术积分: 10324
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-26 16:44
个人简介

推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html

文章分类

全部博文(594)

分类: C/C++

2016-08-25 12:57:44

# 相关链接:
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
if(COMPILER_SUPPORTS_CXX11)
    add_definitions("-std=c++11")
endif()

C++代码中则可以如下判断:
#if __cplusplus >= 201103L
#include
#endif // __cplusplus >= 201103L

阅读(4604) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~