-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathproject.xml
More file actions
66 lines (59 loc) · 1.52 KB
/
project.xml
File metadata and controls
66 lines (59 loc) · 1.52 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- PasBuild Project Configuration -->
<!-- This project builds itself! -->
<name>PasBuild</name>
<version>1.9.0-git</version>
<author>Graeme Geldenhuys</author>
<license>BSD-3-Clause</license>
<build>
<mainSource>PasBuild.pas</mainSource>
<outputDirectory>target</outputDirectory>
<executableName>pasbuild</executableName>
<!-- Resources configuration -->
<resources>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resources>
<!-- Source package optional includes -->
<sourcePackage>
<include>docs</include>
</sourcePackage>
</build>
<!-- Test Configuration -->
<test>
<testSource>TestRunner.pas</testSource>
<framework>fpcunit</framework>
<frameworkOptions>
<option>--all</option>
<option>--format=plain</option>
</frameworkOptions>
</test>
<!-- Build Profiles -->
<profiles>
<profile>
<id>debug</id>
<defines>
<define>DEBUG</define>
</defines>
<compilerOptions>
<option>-g</option>
<option>-gl</option>
<option>-gh</option>
<option>-Criot</option>
</compilerOptions>
</profile>
<profile>
<id>release</id>
<defines>
<define>RELEASE</define>
</defines>
<compilerOptions>
<option>-O3</option>
<option>-CX</option>
<option>-XX</option>
<option>-Xs</option>
</compilerOptions>
</profile>
</profiles>
</project>