aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
blob: d95c729cf38859259ff12cbffa27f2231a5eea43 (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
<property name="projectdir" value="opensim-0.3.svn" />

<target name="distdir">
   <delete dir="${projectdir}" />
   <copy todir="${projectdir}">
       <fileset basedir=".">
          <include name="OpenSim/**/*.cs" />
          <include name="OpenSim/**/*.build" />
          <include name="OpenSim/**/*.csproj" />
          <include name="OpenSim/**/*.sln" />
          <include name="bin/*.dll" />
          <include name="bin/*.so" />
          <include name="bin/*.config" />
          <exclude name="bin/OpenSim.*" />
       </fileset>
   </copy>
</target>

<target name="dist" depends="distdir">
    <zip zipfile="${projectdir}.zip">
    <fileset basedir=".">
        <include name="${projectdir}/**" />
    </fileset>
    </zip>
    <tar destfile="${projectdir}.tar.gz" compression="GZip">
    <fileset basedir=".">
        <include name="${projectdir}/**" />
    </fileset>
    </tar>
</target>