aboutsummaryrefslogtreecommitdiff
path: root/build/root.build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-08 12:47:27 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-08 12:47:27 +0300
commitdc776f696463db45d79d83520c146309441f175c (patch)
tree2f178271f5f8a21f8e2e12cc1ddff4387efa899e /build/root.build
parent7d79ac51f168ead6446a9c782ee243207e11436d (diff)
Adapt for building with Clang on Windows
Diffstat (limited to 'build/root.build')
-rw-r--r--build/root.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/root.build b/build/root.build
index 9b8660b..59fb3b6 100644
--- a/build/root.build
+++ b/build/root.build
@@ -29,11 +29,11 @@ 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
-}
cxx.poptions =+ "-I$out_root" "-I$src_root"