Skip to content

Instantly share code, notes, and snippets.

@phuicy
Created November 12, 2014 18:27
Show Gist options
  • Save phuicy/7f35f964044e6882e27f to your computer and use it in GitHub Desktop.
Save phuicy/7f35f964044e6882e27f to your computer and use it in GitHub Desktop.
Cmake -std=c++0x
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
@phuicy
Copy link
Author

phuicy commented Nov 12, 2014

Useful if you need a modern C++ version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment