ikvm-fork/ikvmstub/ikvmstub.build

25 строки
991 B
Plaintext
Исходник Обычный вид История

2004-05-27 11:12:04 +04:00
<?xml version="1.0"?>
<project name="ikvmstub" default="ikvmstub">
<target name="classpath">
<property name="classpath" value="true" />
<call target="ikvmstub" />
</target>
2004-05-27 11:12:04 +04:00
<target name="ikvmstub">
2005-10-01 15:16:11 +04:00
<property name="defs" value="TRACE" />
<property overwrite="false" name="classpath" value="false" />
2005-12-07 12:06:32 +03:00
<if test="${property::exists('signed')}">
2005-10-01 15:16:11 +04:00
<property name="defs" value="${defs};${signed}" />
</if>
<csc target="exe" output="../bin/ikvmstub.exe" define="${defs}">
2004-05-27 11:12:04 +04:00
<sources>
2005-12-07 12:06:32 +03:00
<include name="*.cs" />
2004-05-27 11:12:04 +04:00
</sources>
<references>
<include if="${classpath}" name="../bin/IKVM.GNU.Classpath.dll" asis="true" />
<include unless="${classpath}" name="../bin/IKVM.OpenJDK.ClassLibrary.dll" asis="true" />
2005-12-07 12:06:32 +03:00
<include name="../bin/IKVM.Runtime.dll" asis="true" />
2004-05-27 11:12:04 +04:00
</references>
</csc>
</target>
</project>