diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-03 12:49:58 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-03 12:49:58 +0300 |
commit | ed267da35ccdd58559220f26c054fe9c4a2c0f99 (patch) | |
tree | 8c9c160806a33f03a82a4ec9b1b73602abff7d30 | |
parent | 6a2e1892f015e925d97e295b0f669c3c11e293e5 (diff) |
Suppress MSVC warnings at project level
-rw-r--r-- | build/root.build | 6 | ||||
-rw-r--r-- | tests/build/root.build | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build index be2f582..2193ee4 100644 --- a/build/root.build +++ b/build/root.build @@ -12,3 +12,9 @@ ixx{*}: extension = ixx txx{*}: extension = txx using c + +if ($cxx.class == 'msvc') +{ + cc.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS + cc.coptions += /wd4251 /wd4275 /wd4800 +} diff --git a/tests/build/root.build b/tests/build/root.build index 0989b93..210b297 100644 --- a/tests/build/root.build +++ b/tests/build/root.build @@ -9,6 +9,12 @@ using cxx hxx{*}: extension = hxx cxx{*}: extension = cxx +if ($cxx.class == 'msvc') +{ + cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS + cxx.coptions += /wd4251 /wd4275 /wd4800 +} + # Every exe{} in this subproject is by default a test. # exe{*}: test = true |