summaryrefslogtreecommitdiff
path: root/Jamfile.jam
blob: 29abdd5656c9025e7671abd19a779d1caa6f5338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Latest jamplus is needed to use this
# Targets:
# pugixml - build pugixml library
# tests - build pugixml test suite
# run_tests - run pugixml test suite
# coverage - get test suite coverage

include "Jamrules.jam" ;

BUILD = build/mingw/debug ;
CCFLAGS = -fprofile-arcs -ftest-coverage ;
LDFLAGS = -fprofile-arcs ;
GCOVFLAGS = ;

Library pugixml : src/pugixml.cpp src/pugixpath.cpp ;
Application tests : tests/main.cpp [ Glob tests : test_*.cpp ] : pugixml ;
Test run_tests : tests ;
Coverage coverage : run_tests ;