Skip to content

Commit

Permalink
Disable error on warnings causing assimp build to fail for release
Browse files Browse the repository at this point in the history
  • Loading branch information
RealWilliamWells committed Jul 17, 2023
1 parent ac12a14 commit f09f3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set(GTEST_COMMIT e2239ee6043f73722e7aa812a459f54a28552929) # Version 1.11.0

if(CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32)
# Not for windows because windres.exe doesn't support those
add_definitions(-Wall -ansi -Wno-deprecated -pthread -Wpedantic -fexceptions -Wno-dangling-reference)
add_definitions(-Wall -ansi -Wno-deprecated -pthread -Wpedantic -fexceptions -Wno-dangling-reference -Wno-array-bounds -Wno-stringop-overflow)
endif()

# applies OS type C++ macro
Expand Down

0 comments on commit f09f3d5

Please sign in to comment.