|
| 1 | + |
| 2 | +set(MSVC_WARNINGS |
| 3 | + /W4 # Baseline reasonable warnings |
| 4 | + # /Wall # Also warns on files included from the standard library, so it's not very useful and creates too many extra warnings. |
| 5 | + /permissive- |
| 6 | + /w14062 # enumerator 'identifier' in switch of enum 'enumeration' is not handled, ie -Wswitch equivalent |
| 7 | + /w14242 # 'identifier': conversion from 'type1' to 'type1', possible loss of data |
| 8 | + /w14254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data |
| 9 | + /w14263 # 'function': member function does not override any base class virtual member function |
| 10 | + /w14265 # 'classname': class has virtual functions, but destructor is not virtual instances of this class may not be destructed correctly |
| 11 | + /w14287 # 'operator': unsigned/negative constant mismatch |
| 12 | + /we4289 # nonstandard extension used: 'variable': loop control variable declared in the for-loop is used outside the for-loop scope |
| 13 | + /w14296 # 'operator': expression is always 'boolean_value' |
| 14 | + /w14311 # 'variable': pointer truncation from 'type1' to 'type2' |
| 15 | + /w14545 # expression before comma evaluates to a function which is missing an argument list |
| 16 | + /w14546 # function call before comma missing argument list |
| 17 | + /w14547 # 'operator': operator before comma has no effect; expected operator with side-effect |
| 18 | + /w14549 # 'operator': operator before comma has no effect; did you intend 'operator'? |
| 19 | + /w14555 # expression has no effect; expected expression with side- effect |
| 20 | + /w14619 # pragma warning: there is no warning number 'number' |
| 21 | + /w14640 # Enable warning on thread un-safe static member initialization |
| 22 | + /w14826 # Conversion from 'type1' to 'type_2' is sign-extended. This may cause unexpected runtime behavior. |
| 23 | + /w14905 # wide string literal cast to 'LPSTR' |
| 24 | + /w14906 # string literal cast to 'LPWSTR' |
| 25 | + /w14928 # illegal copy-initialization; more than one user-defined conversion has been implicitly applied |
| 26 | +) |
| 27 | + |
| 28 | + |
| 29 | +set(GCC_WARNINGS |
| 30 | + -Wall |
| 31 | + -Wextra # reasonable and standard |
| 32 | + -Wpedantic |
| 33 | + -Wshadow # warn the user if a variable declaration shadows one from a parent context, may cause warnings in 3rd party libs |
| 34 | + -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 |
| 35 | + -Wold-style-cast # warn for c-style casts |
| 36 | + -Wcast-align # warn for potential performance problem casts |
| 37 | + -Wunused # warn on anything being unused |
| 38 | + -Woverloaded-virtual # warn if you overload (not override) a virtual function |
| 39 | + -Wconversion # warn on type conversions that may lose data |
| 40 | + -Wsign-conversion # warn on sign conversions |
| 41 | + -Wnull-dereference # warn if a null dereference is detected |
| 42 | + -Wdouble-promotion # warn if float is implicit promoted to double |
| 43 | + -Wformat=2 # warn on security issues around functions that format output (ie printf) |
| 44 | + # Maybe GCC only |
| 45 | + -Wmisleading-indentation # warn if indentation implies blocks where blocks do not exist |
| 46 | + -Wduplicated-cond # warn if if / else chain has duplicated conditions |
| 47 | + -Wduplicated-branches # warn if if / else branches have duplicated code |
| 48 | + -Wlogical-op # warn about logical operations being used where bitwise were probably wanted |
| 49 | + -Wuseless-cast # warn if you perform a cast to the same type |
| 50 | + -Wpedantic |
| 51 | +) |
| 52 | + |
| 53 | +function(set_target_warnings target_name) |
| 54 | + target_compile_options(${target_name} PRIVATE |
| 55 | + $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>: |
| 56 | + -Werror |
| 57 | + -Wno-unknown-warning-option # Silences errors for the flags below |
| 58 | + ${GCC_WARNINGS} |
| 59 | + > |
| 60 | + $<$<CXX_COMPILER_ID:GNU>: |
| 61 | + -Werror |
| 62 | + ${GCC_WARNINGS} |
| 63 | + > |
| 64 | + $<$<CXX_COMPILER_ID:MSVC>: |
| 65 | + /WX |
| 66 | + ${MSVC_WARNINGS} |
| 67 | + > |
| 68 | + ) |
| 69 | +endfunction() |
0 commit comments