-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperion.build
32 lines (28 loc) · 1.57 KB
/
hyperion.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
<?xml version="1.0"?>
<project name="Hyperion" default="all" basedir=".">
<description>Hyperion</description>
<property name="outputDirectory" value="Bin"/>
<target name="clean">
<delete dir="${outputDirectory}"/>
</target>
<target name="init">
<mkdir dir="${outputDirectory}"/>
<copy file="Tools/Irony.dll" tofile="${outputDirectory}/Irony.dll" />
</target>
<!-- Subsystems -->
<target name="core"><nant buildfile="Hyperion.Core/hyperion.build"/></target>
<target name="cameras"><nant buildfile="Cameras/hyperion.build"/></target>
<target name="lights"><nant buildfile="Lights/hyperion.build"/></target>
<target name="filters"><nant buildfile="Filters/hyperion.build"/></target>
<target name="films"><nant buildfile="Films/hyperion.build"/></target>
<target name="samplers"><nant buildfile="Samplers/hyperion.build"/></target>
<target name="accelerators"><nant buildfile="Accelerators/hyperion.build"/></target>
<target name="materials"><nant buildfile="Materials/hyperion.build"/></target>
<target name="shapes"><nant buildfile="Shapes/hyperion.build"/></target>
<target name="textures"><nant buildfile="Textures/hyperion.build"/></target>
<target name="integrators"><nant buildfile="Integrators/hyperion.build"/></target>
<target name="renderers"><nant buildfile="Renderers/hyperion.build"/></target>
<target name="hyperion" depends="core"><nant buildfile="Hyperion/hyperion.build"/></target>
<!-- meta target -->
<target name="all" depends="init,core,cameras,lights,filters,films,samplers,accelerators,materials,shapes,textures,integrators,renderers,hyperion"/>
</project>