aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
diff options
context:
space:
mode:
authorSean Dague2007-09-17 12:14:23 +0000
committerSean Dague2007-09-17 12:14:23 +0000
commit219d3a7e37e4eddccbe16daca6937b867bfdf699 (patch)
tree0faa8e4d661ada05cd182909574ed041c71e158f /.nant/local.include
parentgetting closer to a dist that will run (diff)
downloadopensim-SC_OLD-219d3a7e37e4eddccbe16daca6937b867bfdf699.zip
opensim-SC_OLD-219d3a7e37e4eddccbe16daca6937b867bfdf699.tar.gz
opensim-SC_OLD-219d3a7e37e4eddccbe16daca6937b867bfdf699.tar.bz2
opensim-SC_OLD-219d3a7e37e4eddccbe16daca6937b867bfdf699.tar.xz
I think this is the last bits for a consistant pristine
source build with "nant dist" target
Diffstat (limited to '.nant/local.include')
-rw-r--r--.nant/local.include12
1 files changed, 8 insertions, 4 deletions
diff --git a/.nant/local.include b/.nant/local.include
index 0ba99e2..7e1627c 100644
--- a/.nant/local.include
+++ b/.nant/local.include
@@ -1,9 +1,11 @@
1<property name="projectdir" value="opensim-0.3.svn" /> 1<property name="projectdir" value="opensim-0.4" />
2 2
3<target name="distdir"> 3<target name="distdir">
4 <delete dir="${projectdir}" /> 4 <delete dir="${projectdir}" />
5 <copy todir="${projectdir}"> 5 <copy todir="${projectdir}">
6 <fileset basedir="."> 6 <fileset basedir=".">
7 <include name="ThirdPartyLicenses/**" />
8 <include name="CONTRIBUTORS.txt" />
7 <include name="OpenSim/**/*.cs" /> 9 <include name="OpenSim/**/*.cs" />
8 <include name="**/*.build" /> 10 <include name="**/*.build" />
9 <include name="**/*.csproj" /> 11 <include name="**/*.csproj" />
@@ -13,13 +15,15 @@
13 <include name="bin/*.so" /> 15 <include name="bin/*.so" />
14 <include name="bin/*.config" /> 16 <include name="bin/*.config" />
15 <include name="bin/assets/**" /> 17 <include name="bin/assets/**" />
16 <include name="ThirdPartyLicenses/**" /> 18 <include name="bin/data/**" />
17 <include name="CONTRIBUTORS.txt" /> 19 <include name="bin/OpenSim*xml" />
18 <!-- order is important --> 20 <!-- the next is to exclude built libs -->
19 <exclude name="bin/OpenSim.*dll" /> 21 <exclude name="bin/OpenSim.*dll" />
20 <include name="bin/OpenSim.ini" /> 22 <include name="bin/OpenSim.ini" />
23 <include name="bin/defaultstripe.png" />
21 </fileset> 24 </fileset>
22 </copy> 25 </copy>
26 <touch file="${projectdir}/bin/startup_commands.txt" />
23</target> 27</target>
24 28
25<target name="dist" depends="distdir"> 29<target name="dist" depends="distdir">