Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap_data / build.xml @ 23246

History | View | Annotate | Download (973 Bytes)

1 19399 vcaballero
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- ======================================================================
3
     09/01/2008 13:02:25
4

5
     libDataStore
6
     Build del libDataStore
7

8
     jmvivo
9
     ====================================================================== -->
10
<project name="libDataSource" default="generar-tar-fuentes">
11
    <description>
12
            Build del libDataStore
13
    </description>
14
        <dirname file="${ant.file.libDataStore}" property="proyectDir"/>
15
        <property name="workspaceDir" location="${proyectDir}/.."/>
16
17
    <!-- =================================
18
          target: default
19
         ================================= -->
20
    <target name="generar-tar-fuentes" description="--> genera el tar de fuentes">
21
            <tar destfile="${workspaceDir}/${ant.project.name}.tar.gz">
22
                    <tarfileset dir="${proyectDir}" prefix="${ant.project.name}/" excludes="*.*~,bin/,**/CVS"/>
23
            </tar>
24
25
26
    </target>
27
28
29
</project>