Statistics
| Revision:

svn-gvsig-desktop / tags / v1_9_Build_1235 / binaries / mac / build.xml @ 44114

History | View | Annotate | Download (1.18 KB)

1 15597 jmvivo
<project name="binaries mac" default="main" basedir=".">
2
    <description>
3
        Reorganiza el directorio binaries/mac, para que pueda usarse directamente por gvSIG.
4
    </description>
5 16295 jmvivo
6
        <available property="is3D" file="3D" />
7
8 15597 jmvivo
        <property name="targetDir" location="." />
9 16295 jmvivo
10 15597 jmvivo
        <target name="main" depends="gdal, mrsid, crs" />
11 16295 jmvivo
12 15597 jmvivo
<!--        <target name="ecw">
13
                <copy todir="${targetDir}">
14
                        <fileset dir="raster/ecw" includes="jecw.dll jecwcompress.dll NCScnet.dll NCSEcwC.dll NCSEcw.dll NCSUtil.dll" />
15
                </copy>
16
        </target> -->
17 16295 jmvivo
18 15597 jmvivo
        <target name="gdal">
19
                <copy todir="${targetDir}">
20
                        <fileset dir="raster/gdal"
21 21660 mijail
                                includes="*.dylib *.jnilib *.jar"/>
22 15597 jmvivo
                </copy>
23
        </target>
24 16295 jmvivo
25 15597 jmvivo
        <target name="mrsid">
26
                <copy todir="${targetDir}">
27 21660 mijail
                        <fileset dir="raster/mrSID" includes="*.dylib *.jnilib *.jar" />
28 15597 jmvivo
                </copy>
29
        </target>
30 16295 jmvivo
31 15597 jmvivo
        <target name="clean">
32
                <delete>
33
                        <fileset
34
                                dir="${targetDir}"
35
                                includes="*.dylib *.jnilib *.jar"/>
36
                </delete>
37
        </target>
38
39 16295 jmvivo
        <target name="3D" if="is3D">
40
                <copy todir="${targetDir}">
41
                        <fileset dir="3D" includes="**/**" />
42
                </copy>
43
        </target>
44
45
46 15597 jmvivo
        <target name="crs">
47
                <copy todir="${targetDir}">
48 21660 mijail
                        <fileset dir="crs" includes="*.dylib *.jnilib *.jar" />
49 15597 jmvivo
                </copy>
50
        </target>
51
52
</project>