Disabled -Wextra compile option for GCC + CLang as FBX headers generate lots of warnings we can't fix

This commit is contained in:
Robert Osfield
2016-06-28 19:46:14 +01:00
parent b2e5e5b388
commit 4223028ec1

View File

@@ -24,6 +24,7 @@ IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
REMOVE_CXX_FLAG(-pedantic)
REMOVE_CXX_FLAG(-Wall)
REMOVE_CXX_FLAG(-Wunused)
REMOVE_CXX_FLAG(-Wextra)
ENDIF()
IF(WIN32)