-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
12 lines (11 loc) · 778 Bytes
/
build.xml
File metadata and controls
12 lines (11 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="UTF-8"?>
<!-- Convention: Aggregating targets no prefix. Internal targets "-" prefix. Worker targets "_" prefix. -->
<project name="boost" default="all" basedir=".">
<import file="build-includes.xml"/>
<target name="all"
depends="clean, artifacts, instrument_clover, compile, compile_clover, instrument_cobertura, -run, -report, -check, jar"/>
<target name="quality" depends="run_checkstyle, run_simian, check_checkstyle, check_simian"/>
<target name="-run" depends="run_tests, run_checkstyle, run_simian"/>
<target name="-report" depends="report_tests, report_cobertura, report_clover"/>
<target name="-check" depends="check_tests, check_cobertura, check_clover, check_checkstyle, check_simian"/>
</project>