diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-07 19:30:27 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-07 19:30:27 +0300 |
commit | 608136f02f2e58725f2460afe1f1ed5f0cf61ae4 (patch) | |
tree | 5c42dd99e335fc9217090dff9c7d84dbfe01221a | |
parent | 24891ac6beaa8c7847691ff1169662f6bc33d231 (diff) |
Adapt for building with Clang on Windows
-rw-r--r-- | build/root.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/root.build b/build/root.build index ea97d9a..861de55 100644 --- a/build/root.build +++ b/build/root.build @@ -13,8 +13,8 @@ ixx{*}: extension = ixx txx{*}: extension = txx cxx{*}: extension = cxx -if ($cxx.class == 'msvc') -{ +if ($cxx.target.system == 'win32-msvc') cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS + +if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 -} |