Skip to content
Snippets Groups Projects
Commit 9dc702fb authored by adrien-matta's avatar adrien-matta
Browse files

* Trying to fix error when disabling C++11 support

parent cd5a5880
No related branches found
No related tags found
No related merge requests found
...@@ -29,18 +29,24 @@ set(CMAKE_INSTALL_MESSAGE LAZY) ...@@ -29,18 +29,24 @@ set(CMAKE_INSTALL_MESSAGE LAZY)
# look for Root # look for Root
include("ressources/CMake/Root.cmake") include("ressources/CMake/Root.cmake")
# Check for user disabling of c++11 support
string(COMPARE EQUAL "${CPP11}" "no" nocpp11)
if(nocpp11)
message(" -> C++11 support disable")
endif()
# If the compiler is Clang, silence the unrecognised flags # If the compiler is Clang, silence the unrecognised flags
if(${CMAKE_CXX_COMPILER_ID} MATCHES ".*Clang.*") if(${CMAKE_CXX_COMPILER_ID} MATCHES ".*Clang.*")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments -fcolor-diagnostics") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments -fcolor-diagnostics")
if( UNIX AND NOT APPLE ) if( UNIX AND NOT APPLE )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
endif() endif()
if( APPLE AND CLANG_VERSION_MAJOR VERSION_LESS 5) if( APPLE AND CLANG_VERSION_MAJOR VERSION_LESS 5 AND NOT nocpp11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
endif() endif()
endif() endif()
# Adjust the compiler language flag # Adjust the compiler language flag
set(NOCPPFLAGS true) set(NOCPPFLAGS true)
if(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*11") if(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*11")
...@@ -49,11 +55,6 @@ elseif(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*0x") ...@@ -49,11 +55,6 @@ elseif(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*0x")
set(NOCPPFLAGS false) set(NOCPPFLAGS false)
endif() endif()
string(COMPARE EQUAL "${CPP11}" "no" nocpp11)
if(nocpp11)
message(" -> C++11 support disable")
endif()
if(NOCPPFLAGS) if(NOCPPFLAGS)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
if(COMPILER_SUPPORTS_CXX11 AND NOT nocpp11) if(COMPILER_SUPPORTS_CXX11 AND NOT nocpp11)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment