diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-12-16 12:20:27 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-12-19 16:17:46 +0100 |
commit | 9aa50f4ba0c4d592ffe906459feb55983dd1ec76 (patch) | |
tree | 8df4d13528eeb969119f202a56588ff22ad8aafc /etc/defaults/CC/TARGETS.just | |
parent | e2b6d9d3c41d162517019ee0bf9147e398a5b1fa (diff) | |
download | justbuild-9aa50f4ba0c4d592ffe906459feb55983dd1ec76.tar.gz |
just: Re-enable local project warning flags
Diffstat (limited to 'etc/defaults/CC/TARGETS.just')
-rw-r--r-- | etc/defaults/CC/TARGETS.just | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/etc/defaults/CC/TARGETS.just b/etc/defaults/CC/TARGETS.just index 9002d5b4..4fe7ad8c 100644 --- a/etc/defaults/CC/TARGETS.just +++ b/etc/defaults/CC/TARGETS.just @@ -3,13 +3,13 @@ , "base": [["@", "base", "CC", "defaults"]] , "ADD_CFLAGS": ["-std=gnu17"] , "ADD_CXXFLAGS": ["-std=c++20"] + , "ADD_COMPILE_FLAGS": + [ "-Wall" + , "-Wextra" + , "-Wpedantic" + , "-Wsign-conversion" + , "-Werror" + , "-pedantic-errors" + ] } -, "ADD_COMPILE_FLAGS": - [ "-Wall" - , "-Wextra" - , "-Wpedantic" - , "-Wsign-conversion" - , "-Werror" - , "-pedantic-errors" - ] } |