Statistics
| Revision:

svn-gvsig-desktop / tags / tmp_build / install / installjammer / build.xml @ 36455

History | View | Annotate | Download (1.01 KB)

1
<project name="InstallJammer" default="init" basedir=".">
2
    <description>
3
        gvSIG 1.x installjammer builder
4
    </description>
5
        
6
          <!-- set global properties for this build -->
7
          <property name="outputFolder" location="${basedir}/output"/>
8
        <property name="baseNativeLibsDir" location="${basedir}/../../binaries"/>
9
        <property name="buildFile" location="${basedir}/gvsig-standard-installer.mpi"/>
10
        <property name="baseDir" location="${basedir}/../../_fwAndami"/>
11
        
12
        <loadproperties srcFile="${basedir}/../../appgvSIG/package.info"/>
13
        
14
        <property name="installVersion" value="${gvSIG-version}.${build}"/>
15
        
16
        <target name="init">
17
                <exec executable="installjammer" >
18
                        <arg value="-DInstallVersion ${installVersion}"/>
19
                        <arg value="-DInstallString ${installVersion}"/>
20
                        <arg value="-DBaseDir ${baseDir}"/>
21
                        <arg value="-DBaseNativeLibsDir ${baseNativeLibsDir}"/>
22
                        
23
                        <arg value="--verbose"/>
24
                        <arg value="--output-dir ${outputFolder}"/>
25
                        
26
                        <arg value="--build ${buildFile}"/>
27
                </exec>
28
                
29
        </target>
30
  
31
</project>