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

* Fixing variable name in CMakeLists

parent ce66404b
No related branches found
No related tags found
No related merge requests found
......@@ -49,10 +49,10 @@ elseif(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*0x")
set(NOCPPFLAGS false)
endif()
string(COMPARE EQUAL "${NOCPP11}" "no" nocpp11)
if(nocpp11)
message(" -> C++11 support disable")
endif()
string(COMPARE EQUAL "${CPP11}" "no" nocpp11)
if(nocpp11)
message(" -> C++11 support disable")
endif()
if(NOCPPFLAGS)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
......
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