ikvm-fork/ikvmstub/ikvmstub.build

28 строки
1.1 KiB
XML

<?xml version="1.0"?>
<project name="ikvmstub" default="ikvmstub">
<target name="hybrid">
<property name="hybrid" value="true" />
<call target="ikvmstub" />
</target>
<target name="ikvmstub">
<property name="defs" value="TRACE" />
<property overwrite="false" name="hybrid" value="false" />
<if test="${property::exists('signed')}">
<property name="defs" value="${defs};${signed}" />
</if>
<if test="${framework::get-target-framework()=='net-2.0'}">
<property name="defs" value="${defs};WHIDBEY" />
</if>
<csc target="exe" output="../bin/ikvmstub.exe" define="${defs}">
<sources>
<include name="*.cs" />
</sources>
<references>
<include unless="${hybrid}" name="../bin/IKVM.GNU.Classpath.dll" asis="true" />
<include if="${hybrid}" name="../bin/IKVM.Hybrid.GNU.Classpath.OpenJDK.dll" asis="true" />
<include name="../bin/IKVM.Runtime.dll" asis="true" />
</references>
</csc>
</target>
</project>