From df56ecc496f7e8775acd8a992ffcc7f2aa05a975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 22 Aug 2011 20:17:47 +0200 Subject: [PATCH] Magnum now uses C++11 features. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7159cc672..4821a5024 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ set_parent_scope(MAGNUM_LIBRARY Magnum) include(FindMagnum) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -std=c++0x") add_subdirectory(modules) add_subdirectory(src)