diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-07 20:32:40 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-07 20:32:40 +0300 |
commit | 87810903ad1aa7d574794a3151b98ab20627a8cb (patch) | |
tree | 14f0c620a2174c911ba114b30bbc7bd37a9e9c26 /build | |
parent | 678189d3e6bbf2501f517c734b4ab550848c1080 (diff) |
Adapt for building with Clang on Windows
Diffstat (limited to 'build')
-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 8225590..3488223 100644 --- a/build/root.build +++ b/build/root.build @@ -13,8 +13,8 @@ hxx{*}: extension = hxx mxx{*}: extension = mxx 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 -} |