ikvm-fork/ikvm.build

33 строки
1.3 KiB
Plaintext
Исходник Обычный вид История

2002-12-18 19:00:25 +03:00
<?xml version="1.0"?>
<project name="ikvm" default="all">
<target name="all">
2004-12-02 11:43:05 +03:00
<nant buildfile="tools/tools.build" />
2004-05-27 11:12:04 +04:00
<nant buildfile="runtime/runtime.build" />
2004-08-30 19:56:23 +04:00
<nant buildfile="native/native.build" />
2003-01-08 16:35:05 +03:00
<nant buildfile="ikvmc/ikvmc.build" />
2002-12-18 19:00:25 +03:00
<nant buildfile="classpath/classpath.build" />
<nant buildfile="ikvm/ikvm.build" />
2004-12-02 11:43:05 +03:00
<nant buildfile="ikvmstub/ikvmstub.build" />
2003-12-20 01:19:18 +03:00
<if propertytrue="nant.platform.win32">
<nant buildfile="awt/awt.build" />
2004-12-02 11:43:05 +03:00
<nant buildfile="jvm/jvm.build" />
2003-12-20 01:19:18 +03:00
</if>
2002-12-18 19:00:25 +03:00
</target>
2003-12-20 01:19:18 +03:00
<target name="clean">
<delete failonerror="false">
<fileset>
2004-05-27 11:12:04 +04:00
<includes name="bin/IKVM.AWT.WinForms.dll" />
<includes name="bin/IKVM.Runtime.dll" />
<includes name="bin/IKVM.GNU.Classpath.dll" />
2004-08-30 19:56:23 +04:00
<includes name="bin/ikvm-native.dll" />
<includes name="bin/libikvm-native.so" />
2003-12-20 01:19:18 +03:00
<includes name="bin/ikvm.exe" />
<includes name="bin/ikvmc.exe" />
2004-05-27 11:12:04 +04:00
<includes name="bin/ikvmstub.exe" />
2004-12-02 11:43:05 +03:00
<includes name="bin/JVM.DLL" />
<includes name="tools/asmref.exe" />
2003-12-20 01:19:18 +03:00
</fileset>
</delete>
</target>
2002-12-18 19:00:25 +03:00
</project>