From 1e7fe6317d3152d777ee86234ba5e7cc641867da Mon Sep 17 00:00:00 2001 From: Martin Schultz Date: Tue, 29 Sep 2015 15:12:38 +0200 Subject: [PATCH] fixes #2 * removes -ansi since -ansi enforces older c++ standard --- src/Unittests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/CMakeLists.txt b/src/Unittests/CMakeLists.txt index c3bf6512..270f4242 100644 --- a/src/Unittests/CMakeLists.txt +++ b/src/Unittests/CMakeLists.txt @@ -62,7 +62,7 @@ if ( OPENMESH_BUILD_UNIT_TESTS ) if ( NOT WIN32 ) # Set compiler flags - set_target_properties(unittests PROPERTIES COMPILE_FLAGS "-g -pedantic -ansi -Wno-long-long") + set_target_properties(unittests PROPERTIES COMPILE_FLAGS "-g -pedantic -Wno-long-long") else() # Set compiler flags set_target_properties(unittests PROPERTIES COMPILE_FLAGS "" )