-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rttr] Disable -Werror in order to support android (#37406)
- Loading branch information
1 parent
7f629be
commit 3850888
Showing
6 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/CMake/utility.cmake b/CMake/utility.cmake | ||
index 8e7a0c6..ac5e305 100644 | ||
--- a/CMake/utility.cmake | ||
+++ b/CMake/utility.cmake | ||
@@ -395,7 +395,7 @@ function( set_compiler_warnings target) | ||
set(WARNINGS "-Werror" | ||
"-Wall") | ||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
- set(WARNINGS "-Werror" | ||
+ set(WARNINGS | ||
"-Wall") | ||
elseif(MSVC) | ||
set(WARNINGS "/WX" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters