aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-07 12:52:45 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-07 12:52:45 +0300
commit2ff1e687d35c8f8afdd26ca2ea195a9b3711b6f7 (patch)
treefae7a3a7320c46108d708539122d59e273f25692
parent1e053fc12dacfb840cb3824e2e800be017fd3e32 (diff)
Adapt tests for building with Clang on Windows
-rw-r--r--tests/build/root.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/build/root.build b/tests/build/root.build
index 126009d..2a85899 100644
--- a/tests/build/root.build
+++ b/tests/build/root.build
@@ -9,11 +9,11 @@ using cxx
hxx{*}: extension = hxx
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
-}
# Every exe{} in this subproject is by default a test.
#