ikvm-fork/ikvm.build

40 строки
1.6 KiB
XML

<?xml version="1.0"?>
<project name="ikvm" default="all">
<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>
<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" />
<includes name="native/Release/ikvm-native.dll" />
</fileset>
</delete>
</target>
</project>