summaryrefslogtreecommitdiff
path: root/libicuuc/build/root.build
diff options
context:
space:
mode:
Diffstat (limited to 'libicuuc/build/root.build')
-rw-r--r--libicuuc/build/root.build26
1 files changed, 26 insertions, 0 deletions
diff --git a/libicuuc/build/root.build b/libicuuc/build/root.build
new file mode 100644
index 0000000..a5e2f90
--- /dev/null
+++ b/libicuuc/build/root.build
@@ -0,0 +1,26 @@
+# file : build/root.build
+# copyright : Copyright (c) 2018-2019 Code Synthesis Ltd
+# license : Unicode License; see accompanying LICENSE file
+
+c.std = 11
+
+using c
+
+h{*}: extension = h
+c{*}: extension = c
+
+# Note that upstream compiles with -std=c++11 but this ends up with the 'auto
+# return without trailing return type' error for Clang targeting MSVC runtime.
+#
+cxx.std = latest
+
+using cxx
+
+hxx{*}: extension = h
+cxx{*}: extension = cpp
+
+if ($c.target.system == 'win32-msvc')
+ cc.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+
+if ($c.class == 'msvc')
+ cc.coptions += /wd4251 /wd4275 /wd4800