ikvm-fork/ikvm.build

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

2002-12-18 19:00:25 +03:00
<?xml version="1.0"?>
2006-12-11 16:13:27 +03:00
<project name="ikvm" default="all">
2005-01-07 12:34:19 +03:00
<target name="signed">
<property name="signed" value="SIGNCODE" />
<property name="signoption" value="-key:ikvm-key" />
<property name="ilasm_signoption" value="/key:@ikvm-key" />
<call target="all" />
</target>
2002-12-18 19:00:25 +03:00
<target name="all">
2004-12-02 11:43:05 +03:00
<nant buildfile="tools/tools.build" />
<nant buildfile="runtime/runtime.build" target="first-pass" />
2004-08-30 19:56:23 +04:00
<nant buildfile="native/native.build" />
<nant buildfile="refemit/refemit.build" />
2003-01-08 16:35:05 +03:00
<nant buildfile="ikvmc/ikvmc.build" />
<nant buildfile="openjdk/openjdk.build" />
<nant buildfile="runtime/runtime.build" />
<nant buildfile="openjdk/openjdk.build" target="tools" />
2002-12-18 19:00:25 +03:00
<nant buildfile="ikvm/ikvm.build" />
2004-12-02 11:43:05 +03:00
<nant buildfile="ikvmstub/ikvmstub.build" />
2006-11-27 10:39:30 +03:00
<nant buildfile="awt/awt.build" />
2006-10-16 09:40:35 +04:00
<if test="${platform::is-win32()}">
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>
2005-12-07 12:06:32 +03:00
<include name="bin/IKVM.AWT.WinForms.dll" />
<include name="bin/IKVM.Reflection.Emit.dll" />
<include name="bin/IKVM.Reflection.Emit.MdbWriter.dll" />
<include name="bin/IKVM.Reflection.Emit.PdbWriter.dll" />
2005-12-07 12:06:32 +03:00
<include name="bin/IKVM.Runtime.dll" />
<include name="bin/IKVM.Runtime.JNI.dll" />
<include name="bin/IKVM.OpenJDK.*.dll" />
2005-12-07 12:06:32 +03:00
<include name="bin/libikvm-native.so" />
<include name="bin/ikvm.exe" />
<include name="bin/ikvmc.exe" />
<include name="bin/ikvmstub.exe" />
<include name="bin-x64/ikvm-native.dll" />
<include name="bin-x64/JVM.DLL" />
<include name="bin-x86/ikvm-native.dll" />
<include name="bin-x86/JVM.DLL" />
2005-12-07 12:06:32 +03:00
<include name="tools/asmref.exe" />
<include name="tools/depcheck.exe" />
<include name="tools/pubkey.exe" />
<include name="tools/pubkey.txt" />
<include name="tools/updbaseaddresses.exe" />
<include name="native/Release-x64/ikvm-native.dll" />
<include name="native/Release-x64/*.obj" />
<include name="native/Release-x86/ikvm-native.dll" />
<include name="native/Release-x86/*.obj" />
2003-12-20 01:19:18 +03:00
</fileset>
</delete>
</target>
2002-12-18 19:00:25 +03:00
</project>