2014-08-13 10:39:27 +01:00
|
|
|
<?xml version="1.0"?>
|
2014-10-04 11:27:48 +01:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2002-2013 Jeroen Frijters
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
|
|
|
|
Jeroen Frijters
|
|
|
|
jeroen@frijters.net
|
|
|
|
|
|
|
|
-->
|
2014-08-13 10:39:27 +01:00
|
|
|
<project name="ikvmc" default="ikvmc">
|
|
|
|
<include buildfile="../ikvm.include" />
|
|
|
|
|
|
|
|
<target name="ikvmc">
|
2014-10-04 11:27:48 +01:00
|
|
|
<property name="defs" value="TRACE;STATIC_COMPILER;EMITTERS" />
|
2014-08-13 10:39:27 +01:00
|
|
|
<if test="${property::exists('signed')}">
|
|
|
|
<property name="defs" value="${defs};${signed}" />
|
|
|
|
</if>
|
|
|
|
<if test="${version::get-major(framework::get-version(framework::get-target-framework() )) == 4}">
|
|
|
|
<property name="defs" value="${defs};NET_4_0" />
|
|
|
|
</if>
|
|
|
|
<csc target="exe" output="../bin/ikvmc.exe" optimize="true" define="${defs}" noconfig="true" nostdlib="true">
|
|
|
|
<sources>
|
|
|
|
<include name="../CommonAssemblyInfo.cs" />
|
|
|
|
<include name="AotTypeWrapper.cs" />
|
|
|
|
<include name="AssemblyInfo.cs" />
|
|
|
|
<include name="AssemblyResolver.cs" />
|
|
|
|
<include name="Compiler.cs" />
|
|
|
|
<include name="CompilerClassLoader.cs" />
|
|
|
|
<include name="FakeTypes.cs" />
|
|
|
|
<include name="Proxy.cs" />
|
|
|
|
<include name="remapper.cs" />
|
|
|
|
<include name="../runtime/AssemblyClassLoader.cs" />
|
|
|
|
<include name="../runtime/atomic.cs" />
|
|
|
|
<include name="../runtime/attributes.cs" />
|
|
|
|
<include name="../runtime/BigEndianBinaryReader.cs" />
|
2014-10-04 11:27:48 +01:00
|
|
|
<include name="../runtime/Boxer.cs" />
|
2014-08-13 10:39:27 +01:00
|
|
|
<include name="../runtime/ByteCode.cs" />
|
|
|
|
<include name="../runtime/ClassFile.cs" />
|
|
|
|
<include name="../runtime/ClassLoaderWrapper.cs" />
|
|
|
|
<include name="../runtime/CodeEmitter.cs" />
|
|
|
|
<include name="../runtime/compiler.cs" />
|
|
|
|
<include name="../runtime/CoreClasses.cs" />
|
|
|
|
<include name="../runtime/DotNetTypeWrapper.cs" />
|
|
|
|
<include name="../runtime/DynamicClassLoader.cs" />
|
|
|
|
<include name="../runtime/DynamicTypeWrapper.cs" />
|
|
|
|
<include name="../runtime/intrinsics.cs" />
|
|
|
|
<include name="../runtime/JavaException.cs" />
|
|
|
|
<include name="../runtime/JsrInliner.cs" />
|
2014-10-04 11:27:48 +01:00
|
|
|
<include name="../runtime/LambdaMetafactory.cs" />
|
2014-08-13 10:39:27 +01:00
|
|
|
<include name="../runtime/LocalVars.cs" />
|
|
|
|
<include name="../runtime/MemberWrapper.cs" />
|
2014-10-04 11:27:48 +01:00
|
|
|
<include name="../runtime/MethodHandleUtil.cs" />
|
2014-08-13 10:39:27 +01:00
|
|
|
<include name="../runtime/profiler.cs" />
|
|
|
|
<include name="../runtime/ReflectUtil.cs" />
|
|
|
|
<include name="../runtime/RuntimeHelperTypes.cs" />
|
|
|
|
<include name="../runtime/Serialization.cs" />
|
|
|
|
<include name="../runtime/tracer.cs" />
|
|
|
|
<include name="../runtime/Types.cs" />
|
|
|
|
<include name="../runtime/TypeWrapper.cs" />
|
|
|
|
<include name="../runtime/verifier.cs" />
|
|
|
|
<include name="../runtime/vm.cs" />
|
|
|
|
</sources>
|
|
|
|
<references>
|
|
|
|
<include name="../bin/ICSharpCode.SharpZipLib.dll" asis="true" />
|
|
|
|
<include name="../bin/IKVM.Reflection.dll" asis="true" />
|
|
|
|
<include name="${ReferencePath}/mscorlib.dll" />
|
|
|
|
<include name="${ReferencePath}/System.dll" />
|
|
|
|
<include name="${ReferencePath}/System.Configuration.dll" />
|
|
|
|
<include name="${ReferencePath}/System.Xml.dll" />
|
|
|
|
</references>
|
|
|
|
</csc>
|
|
|
|
</target>
|
|
|
|
</project>
|