-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
29 lines (28 loc) · 1.16 KB
/
build.xml
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
<?xml version="1.0" ?>
<project name="Qafoo Profiler Client">
<target name="generate-single-file">
<concat destfile="QafooProfiler.php" overwrite="true">
<header filtering="no" trimleading="yes"><?php
namespace QafooLabs\Profiler;
</header>
<path>
<filelist dir="src">
<file name="main/QafooLabs/Profiler/Backend.php" />
<file name="main/QafooLabs/Profiler/CurlBackend.php" />
<file name="main/QafooLabs/Profiler/NetworkBackend.php" />
<file name="main/QafooLabs/Profiler/SqlAnonymizer.php" />
<file name="main/QafooLabs/Profiler.php" />
<file name="scripts/auto_start.php" />
</filelist>
</path>
<filterchain>
<linecontains negate="true">
<contains value="namespace QafooLabs\Profiler;" />
</linecontains>
<linecontains negate="true">
<contains value="<?php" />
</linecontains>
</filterchain>
</concat>
</target>
</project>