Correction d'un include manquant dans CMake

This commit is contained in:
Mattéo Delabre 2016-05-28 18:23:09 +02:00
parent f325e213be
commit f62315a234
1 changed files with 2 additions and 1 deletions

3
CMakeLists.txt vendored
View File

@ -18,9 +18,10 @@ endif()
# Activation du standard C++11 sur GCC
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
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)