Linux: cmake: Don't warn about code in comments (issue #2346)

This commit is contained in:
Marshall Greenblatt 2018-06-27 12:47:39 -04:00
parent b03c54bfbe
commit 669e8673ce
1 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,8 @@ if(OS_LINUX)
-Werror # Treat warnings as errors
-Wno-missing-field-initializers # Don't warn about missing field initializers
-Wno-unused-parameter # Don't warn about unused parameters
-Wno-error=comment # Don't complain about code in ascii art
-Wno-error=comment # Don't warn about code in comments
-Wno-comment # Don't warn about code in comments
)
list(APPEND CEF_C_COMPILER_FLAGS
-std=c99 # Use the C99 language standard