blob: 206829a9e631a389cd5fd4f6c80dbe352b675cdf (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
import os ;
import slice ;
import testing ;
using gcc : : [ os.environ CXX ] ;
using pkg-config ;
import pkg-config ;
variant coverage : debug ;
project
: requirements
<define>ICE_CPP11_MAPPING
<cxxstd>20
<visibility>hidden
<linkflags>"-Wl,-z,defs,--warn-once,--gc-sections"
<variant>release:<lto>on
<variant>debug:<warnings>extra
<variant>debug:<warnings-as-errors>on
<variant>debug:<cflags>-Wnon-virtual-dtor
<variant>debug:<cflags>-Wold-style-cast
<variant>debug:<cflags>-Wcast-align
<variant>debug:<cflags>-Wunused
<variant>debug:<cflags>-Woverloaded-virtual
<variant>debug:<cflags>-Wpedantic
<variant>debug:<cflags>-Wconversion
<variant>debug:<cflags>-Wsign-conversion
<variant>debug:<cflags>-Wnull-dereference
<variant>debug:<cflags>-Wdouble-promotion
<variant>debug:<cflags>-Wformat=2
<toolset>gcc,<variant>debug:<cflags>-Wduplicated-cond
<toolset>gcc,<variant>debug:<cflags>-Wduplicated-branches
<toolset>gcc,<variant>debug:<cflags>-Wlogical-op
<toolset>gcc,<variant>debug:<cflags>-Wuseless-cast
<variant>coverage:<coverage>on
<toolset>tidy:<checkxx>boost-*
<toolset>tidy:<checkxx>bugprone-*
<toolset>tidy:<xcheckxx>bugprone-macro-parentheses
<toolset>tidy:<checkxx>clang-*
<toolset>tidy:<xcheckxx>clang-analyzer-cplusplus.NewDeleteLeaks
<toolset>tidy:<checkxx>misc-*
<toolset>tidy:<xcheckxx>misc-non-private-member-variables-in-classes
<toolset>tidy:<xcheckxx>misc-no-recursion
<toolset>tidy:<checkxx>modernize-*
<toolset>tidy:<xcheckxx>modernize-use-trailing-return-type
<toolset>tidy:<checkxx>hicpp-*
<toolset>tidy:<xcheckxx>hicpp-no-array-decay
<toolset>tidy:<xcheckxx>hicpp-vararg
<toolset>tidy:<xcheckxx>hicpp-named-parameter
<toolset>tidy:<checkxx>performance-*
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classes.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classtype.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/collections.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/enums.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/functions.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/inheritance.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/interfaces.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/json.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/locals.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/optionals.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/structs.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/types.h
<toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/xml.h
<toolset>tidy:<exclude>slicer/bin/common.h
<toolset>tidy:<exclude>slicer/bin/include/slicer/common.h
<toolset>tidy:<exclude>xml/bin/tidy/debug/checker-none/cxxstd-20-iso/xmlExceptions.h
<toolset>tidy:<exclude>db/bin/tidy/debug/checker-none/cxxstd-20-iso/sqlExceptions.h
<toolset>tidy:<exclude>db/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/testModels.h
<toolset>tidy:<exclude>ice/cpp/*
<toolset>tidy:<define>ICE_IGNORE_VERSION
<toolset>tidy:<define>ICE_MEMBER_IMPORT_EXPORT
<toolset>tidy:<define>__x86_64
<toolset>tidy:<librarydef>boost
<toolset>tidy:<librarydef>std
<toolset>tidy:<mapping>iwyu.json
;
build-project slicer ;
pkg-config.import libxmlpp : : <name>libxml++-3.0 ;
pkg-config.import glibmm : : <name>glibmm-2.4 ;
|