From 19186b27ed00f16d81ef1ba807ccd0b962b5baca Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 30 May 2016 02:03:29 +0200 Subject: [PATCH] Removed GCC pedantic build argument --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a73efe57..bd226f10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,8 +82,8 @@ if(GLM_TEST_ENABLE_MS_EXTENSIONS) else() if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") OR (("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel") AND WIN32)) add_definitions(/Za) - elseif(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")) - add_definitions(-pedantic) +# elseif(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")) +# add_definitions(-pedantic) endif() endif()