summaryrefslogtreecommitdiff
path: root/Jamroot.jam
blob: 1bd45d9c47263339d0ab0defc966af703ddb5e90 (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
import os ;
import slice ;

using gcc : : [ os.environ CXX ] ;
using pkg-config ;
import pkg-config ;

variant coverage : debug ;

project
  : requirements
		<define>ICE_CPP11_MAPPING
		<cxxstd>17
		<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>coverage:<coverage>on
		<variant>coverage:<define>COVERAGE
		<toolset>tidy:<exclude>icetray/bin/logWriter.h
		<toolset>tidy:<exclude>icetray/bin/mail.h
		<toolset>tidy:<exclude>icetray/bin/mime.h
		<toolset>tidy:<exclude>icetray/dryice/bin/tidy/debug/checker-none/cxxstd-17-iso/mockMail.h
		<toolset>tidy:<exclude>unittests/bin/testIceTrayService.h
		<toolset>tidy:<checkxx>boost-*
		<toolset>tidy:<checkxx>bugprone-*
		<toolset>tidy:<xcheckxx>bugprone-macro-parentheses
		<toolset>tidy:<checkxx>clang-*
		<toolset>tidy:<checkxx>misc-*
		<toolset>tidy:<xcheckxx>misc-non-private-member-variables-in-classes
		<toolset>tidy:<checkxx>modernize-*
		<toolset>tidy:<xcheckxx>modernize-use-trailing-return-type
		<toolset>tidy:<xcheckxx>modernize-concat-nested-namespaces
		<toolset>tidy:<checkxx>hicpp-*
		<toolset>tidy:<xcheckxx>hicpp-signed-bitwise
		<toolset>tidy:<xcheckxx>hicpp-named-parameter
		<toolset>tidy:<checkxx>performance-*
		<toolset>tidy:<define>ICE_IGNORE_VERSION
		;

build-project icetray ;

pkg-config.import glibmm : : <name>glibmm-2.4 ;