forked from johnynek/brunet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.build
56 lines (48 loc) · 2.33 KB
/
project.build
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
<?xml version="1.0"?>
<project name="Brunet" default="build">
<property name="build.dir" value="${nant.project.basedir}/build"/>
<property name="lib.dir" value="${nant.project.basedir}/lib"/>
<property name="assembly" value="Brunet"/>
<target name="build" description="Builds recursively all subprojects">
<property name="configured" value="true"/>
<nant buildfile="src/Brunet/default.build" />
<nant buildfile="src/Brunet/Services/Dht/default.build" />
<nant buildfile="src/Brunet/Services/Coordinate/default.build" />
<nant buildfile="src/Brunet/Services/XmlRpc/default.build" />
<nant buildfile="src/Brunet/Security/default.build" />
<nant buildfile="src/Brunet/Xmpp/default.build" />
<nant buildfile="src/Brunet/Applications/default.build" />
<nant buildfile="src/Brunet/Messaging/Mock/default.build" />
<nant buildfile="src/Brunet/Simulator/default.build" />
<nant buildfile="tests/protocol/default.build" />
<nant buildfile="src/Ipop/default.build" />
</target>
<target name="clean" description="Deletes the current configuration">
<delete dir="${build.dir}" failonerror="false"/>
<delete failonerror="false">
<fileset basedir="lib/">
<include name="Brunet*.dll"/>
</fileset>
</delete>
</target>
<target name="plabtest-build"
description="make a zip file to be tested with WebUI"
depends="build">
<zip zipfile="basicnode.zip" encoding="utf-8">
<fileset basedir="src/Brunet/Applications/build/" prefix="">
<include name="*" />
</fileset>
</zip>
</target>
<target name="test" description="nunit test brunet!">
<call target="build" />
<nant target="test" buildfile="src/Brunet/Services/Dht/default.build" failonerror="false" />
<nant target="test" buildfile="src/Brunet/Services/Coordinate/default.build" failonerror="false" />
<nant target="test" buildfile="src/Brunet/default.build" failonerror="false" />
<nant target="test" buildfile="src/Brunet/Security/default.build" failonerror="false" />
<nant target="test" buildfile="src/Ipop/default.build" />
<nant target="test" buildfile="src/Ipop/Managed/default.build" />
<nant target="test" buildfile="src/NetworkPackets/default.build" />
<nant target="test" buildfile="src/Brunet/Simulator/default.build" failonerror="false" />
</target>
</project>