# 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