CMakeLists: Make -Wreorder a compile-time error

This can result in silent logic bugs within code, and given the amount
of times these kind of warnings are caused, they should be flagged at
compile-time so no new code is submitted with them.
This commit is contained in:
Lioncash 2020-04-15 13:28:28 -04:00
parent 64b5985f0a
commit 213fff67bc
4 changed files with 7 additions and 5 deletions

View file

@ -53,6 +53,7 @@ if (MSVC)
else()
add_compile_options(
-Wall
-Werror=reorder
-Wno-attributes
)