aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-06 21:49:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-06 21:49:46 +0300
commit1e053fc12dacfb840cb3824e2e800be017fd3e32 (patch)
treeb806676b0d3dd0b1a08d71c47018ba1e5a556bb9
parent8c614ed9f59e9ca4bdc08465a1726e0a6dd6dfbc (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 7519e07..00caf0d 100644
--- a/build/root.build
+++ b/build/root.build
@@ -11,8 +11,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
-}