-
Notifications
You must be signed in to change notification settings - Fork 663
/
Copy pathCompilerWarnings.cmake
127 lines (112 loc) · 6.35 KB
/
CompilerWarnings.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# from here:
#
# https://github.com/lefticus/cppbestpractices/blob/master/02-Use_the_Tools_Available.md
function(set_project_warnings project_name)
set(MSVC_WARNINGS
/W4 # Baseline reasonable warnings
# TODO: Remove all of these disables
# /wd Disable
/wd4100 # unreferenced formal parameter
/wd4127 # conditional expression is constant
/wd4201 # nonstandard extension used: nameless struct/union
/wd4242 # 'identifier': conversion from 'type1' to 'type1', possible loss of data
/wd4244 # 'argument': conversion from 'const type1' to 'type2', possible loss of data
/wd4245 # 'argument': conversion from 'const type1' to 'type2', singed/unsigned mismatch
/wd4456 # declaration of 'var' hides local declaration
/wd4457 # declaration of 'var' hides function parameter
/wd4458 # declaration of 'var' hides class member
/wd4459 # declaration of 'var' hides global declaration
/wd5272 # throwing an object of non-copyable type 'type' is non-standard -> CStateInitException
# TODO: concurrentqueue triggers this. Remove once MSVC fixes it.
# https://developercommunity2.visualstudio.com/t/C4554-triggers-when-both-lhs-and-rhs-is/10034931
/wd4554 # 'operator' : check operator precedence for possible error; use parentheses to clarify precedence
# /w1 Promote to level 1
/w14254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
/w14263 # 'function': member function does not override any base class virtual member function
/w14265 # 'classname': class has virtual functions, but destructor is not virtual instances of this class may not
# be destructed correctly
/w14287 # 'operator': unsigned/negative constant mismatch
/we4289 # nonstandard extension used: 'variable': loop control variable declared in the for-loop is used outside
# the for-loop scope
/w14296 # 'operator': expression is always 'boolean_value'
/w14311 # 'variable': pointer truncation from 'type1' to 'type2'
/w14545 # expression before comma evaluates to a function which is missing an argument list
/w14546 # function call before comma missing argument list
/w14547 # 'operator': operator before comma has no effect; expected operator with side-effect
/w14549 # 'operator': operator before comma has no effect; did you intend 'operator'?
/w14555 # expression has no effect; expected expression with side- effect
/w14619 # pragma warning: there is no warning number 'number'
/w14640 # Enable warning on thread un-safe static member initialization
/w14905 # wide string literal cast to 'LPSTR'
/w14906 # string literal cast to 'LPWSTR'
/w14928 # illegal copy-initialization; more than one user-defined conversion has been implicitly applied
/permissive- # standards conformance mode for MSVC compiler.
)
set(CLANG_WARNINGS
-Wall
-Wextra # reasonable and standard
-Wnon-virtual-dtor # warn the user if a class with virtual functions has a non-virtual destructor. This helps
# catch hard to track down memory errors
-Wunused-function # warn on unused functions
-Wunused-variable # warn on unused variables
-Woverloaded-virtual # warn if you overload (not override) a virtual function
-Wnull-dereference # warn if a null dereference is detected
-Wformat=2 # warn on security issues around functions that format output (ie printf)
# TODO: Remove this exception
-Wno-unused-parameter # warn on unused function parameters
-Wno-missing-field-initializers
-Wno-sign-compare
# TODO: -pedantic # warn if non-standard C++ is used
# TODO: -pedantic-errors # Error on language extensions
# TODO: -Wconversion # warn on type conversions that may lose data
# TODO: -Wcast-align # warn for potential performance problem casts
# TODO: -Wdouble-promotion # warn if float is implicit promoted to double
# TODO: -Wold-style-cast # warn for c-style casts
# TODO: -Wshadow # warn the user if a variable declaration shadows one from a parent context
# TODO: -Wsign-conversion # warn on sign conversions
# TODO: -Wunused-template # warn on unused templates
# TODO: -Wunused-macros # warn on unused macros
)
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 18)
list(APPEND
CLANG_WARNINGS
-Wno-nan-infinity-disabled # TODO: fmt triggers this, a combination of the fast-math flag and `isfinite`
-Wunused-private-field # warn on unused private fields
)
endif()
set(GCC_WARNINGS
${CLANG_WARNINGS}
-Wmisleading-indentation # warn if indentation implies blocks where blocks do not exist
-Wduplicated-cond # warn if if / else chain has duplicated conditions
-Wduplicated-branches # warn if if / else branches have duplicated code
-Wlogical-op # warn about logical operations being used where bitwise were probably wanted
# TODO: Remove this exception
-Wno-useless-cast # warn if you perform a cast to the same type
# Silence GCC note/warning:
# note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’
-fno-var-tracking-assignments
)
if(MSVC)
message(STATUS "Setting MSVC compiler warnings")
set(PROJECT_WARNINGS ${MSVC_WARNINGS})
elseif(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
message(STATUS "Setting Clang compiler warnings")
set(PROJECT_WARNINGS ${CLANG_WARNINGS})
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
message(STATUS "Setting GCC compiler warnings")
set(PROJECT_WARNINGS ${GCC_WARNINGS})
else()
message(AUTHOR_WARNING "No compiler warnings set for '${CMAKE_CXX_COMPILER_ID}' compiler.")
endif()
option(WARNINGS_AS_ERRORS "Treat compiler warnings as errors" TRUE)
if(WARNINGS_AS_ERRORS)
if(UNIX)
set(ERRORS "-Werror")
elseif(WIN32)
set(ERRORS "/WX")
endif()
endif()
message(STATUS "Setting warnings as errors flag: ${ERRORS}")
message(STATUS "Setting project warning flags: ${PROJECT_WARNINGS}")
target_compile_options(${project_name} INTERFACE ${ERRORS} ${PROJECT_WARNINGS})
endfunction() #set_project_warnings