summaryrefslogtreecommitdiff
path: root/libicuuc/build/root.build
blob: dff67b604bb2f9f1ebd249ff03ca1d6623b7e83c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# file      : build/root.build
# 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