Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
CMake : disable unused local typedefs warning.
  • Loading branch information
dboogert committed Apr 30, 2018
1 parent 03c570b commit afaa8da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/cmake/CMakeLists.txt
Expand Up @@ -49,7 +49,7 @@ endif()
IF ( "${CMAKE_BUILD_TYPE}" MATCHES "Debug" )
ADD_DEFINITIONS( -DDEBUG=1 -UNDEBUG )
IF ( NOT WINDOWS )
ADD_DEFINITIONS( -pipe -Wall -O0)
ADD_DEFINITIONS( -pipe -Wall -O0 -Wno-unused-local-typedefs -Wno-strict-aliasing -Wno-maybe-uninitialized)
ENDIF()
ELSEIF ( "${CMAKE_BUILD_TYPE}" MATCHES "Release" )
ADD_DEFINITIONS( -DNDEBUG=1 -UDEBUG )
Expand Down

0 comments on commit afaa8da

Please sign in to comment.