Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ikvm.build - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5b11aed9b3e7cc33b3dbdf313f7a432e12bacb2 (plain)
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="ikvm" default="all">
    <target name="all">
        <nant buildfile="tools/tools.build" />
        <nant buildfile="runtime/runtime.build" />
        <nant buildfile="native/native.build" />
        <nant buildfile="ikvmc/ikvmc.build" />
        <nant buildfile="classpath/classpath.build" />
        <nant buildfile="ikvm/ikvm.build" />
        <nant buildfile="ikvmstub/ikvmstub.build" />
        <if propertytrue="nant.platform.win32">
            <nant buildfile="awt/awt.build" />
            <nant buildfile="jvm/jvm.build" />
        </if>
    </target>
    <target name="clean">
        <delete failonerror="false">
	    <fileset>
                <includes name="bin/IKVM.AWT.WinForms.dll" />
                <includes name="bin/IKVM.Runtime.dll" />
                <includes name="bin/IKVM.GNU.Classpath.dll" />
                <includes name="bin/ikvm-native.dll" />
                <includes name="bin/libikvm-native.so" />
                <includes name="bin/ikvm.exe" />
                <includes name="bin/ikvmc.exe" />
                <includes name="bin/ikvmstub.exe" />
                <includes name="bin/JVM.DLL" />
                <includes name="tools/asmref.exe" />
            </fileset>
        </delete>
    </target>
</project>