Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jvm.build « jvm - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e075017b474cb05a705302757ace902c9cad989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<project name="JVM" default="JVM">
    <include buildfile="../ikvm.include" />
    <target name="version">
        <property name="VERSION" value="${assemblyname::get-version(assemblyname::get-assembly-name(path::combine(project::get-base-directory(), '../bin/IKVM.Runtime.dll')))}" />
        <copy file="jvm.rc.in" tofile="jvm.rc" outputencoding="ascii" overwrite="true">
            <filterchain>
                <replacetokens>
                    <token key="VERSIONLIST" value="${string::replace(property::get-value('VERSION'), '.', ',')}" />
                    <token key="VERSION" value="${VERSION}" />
                </replacetokens>
            </filterchain>
        </copy>
    </target>
    <target name="implib">
        <csc target="exe" output="../tools/implib.exe" rebuild="true">
            <sources>
                <include name="../tools/implib.cs" />
            </sources>
            <references>
                <include name="../bin/IKVM.Reflection.dll" asis="true" />
            </references>
        </csc>
        <copy file="../bin/IKVM.Reflection.dll" tofile="../tools/IKVM.Reflection.dll" overwrite="true" />
    </target>
    <target name="JVM" depends="version implib" if="${not string::starts-with(framework::get-target-framework(), 'mono')}">
        <if test="${property::exists('rc')}">
            <exec program="${rc}" commandline="jvm.rc" />
        </if>
        <rc if="${not property::exists('rc')}" rcfile="jvm.rc" output="jvm.RES" />
        <property name="arch" value="x86" />
        <call target="RunImpLib" />
        <property name="arch" value="x64" />
        <call target="RunImpLib" />
    </target>
    <target name="RunImpLib">
        <property name="signoption" value="" overwrite="false" />
        <exec program="../tools/implib.exe" useruntimeengine="true">
            <arg value="jvm.def" />
            <arg value="-out:../bin-${arch}/JVM.DLL" />
            <arg value="-platform:${arch}" />
            <arg value="-r:../bin/IKVM.Runtime.JNI.dll" />
            <arg value="-win32res:jvm.RES" />
            <arg value="${signoption}" />
        </exec>
    </target>
</project>