aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-07 19:30:27 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-07 19:30:27 +0300
commit608136f02f2e58725f2460afe1f1ed5f0cf61ae4 (patch)
tree5c42dd99e335fc9217090dff9c7d84dbfe01221a
parent24891ac6beaa8c7847691ff1169662f6bc33d231 (diff)
Adapt for building with Clang on Windows
-rw-r--r--build/root.build6
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
-}