Skip to content
Snippets Groups Projects
Commit f165cc45 authored by Tom Fischer's avatar Tom Fischer
Browse files

added the compiler flag in order to use new C++0x standard features

parent c606d9df
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ IF(COMPILER_IS_GCC)
ENDIF()
ENDIF()
# -g
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -Wall -Wextra")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -Wall -Wextra -std=c++0x")
IF(COMPILER_IS_CLANG)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-pragmas")
ELSE()
......
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