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

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

variant coverage : debug ;

project
  : requirements
		<define>ICE_CPP11_MAPPING
		<cxxflags>"-std=c++17 -fvisibility=hidden"
		<linkflags>"-Wl,-z,defs,--warn-once,--gc-sections"
		<variant>release:<cxxflags>"-flto"
		<variant>release:<linkflags>"-flto"
		<variant>debug:<cxxflags>"-W -Wall -Werror -Wextra"
		<variant>coverage:<cxxflags>"--coverage"
		<variant>coverage:<linkflags>"--coverage"
		<variant>coverage:<define>COVERAGE
		<toolset>tidy:<checkxx>boost-*
		<toolset>tidy:<checkxx>bugprone-*
		<toolset>tidy:<checkxx>clang-*
		<toolset>tidy:<checkxx>misc-*
		<toolset>tidy:<checkxx>modernize-*
		<toolset>tidy:<checkxx>hicpp-*
		<toolset>tidy:<checkxx>performance-*
		;

build-project icetray ;

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