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

1
CMakeLists.txt vendored
View File

@ -18,6 +18,7 @@ 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)