diff options
author | Diva Canto | 2010-03-26 13:14:32 -0700 |
---|---|---|
committer | Diva Canto | 2010-03-26 13:14:32 -0700 |
commit | c6bbb48f2b83bbb6baa1f1fd38e78f9030d5773a (patch) | |
tree | c15d71e4d53e9a7d819c9f8494a7fc3904d4e73f /.nant/local.include | |
parent | Hippos with bin/Newtonsoft.Json.XML (diff) | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-c6bbb48f2b83bbb6baa1f1fd38e78f9030d5773a.zip opensim-SC_OLD-c6bbb48f2b83bbb6baa1f1fd38e78f9030d5773a.tar.gz opensim-SC_OLD-c6bbb48f2b83bbb6baa1f1fd38e78f9030d5773a.tar.bz2 opensim-SC_OLD-c6bbb48f2b83bbb6baa1f1fd38e78f9030d5773a.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | .nant/local.include | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/.nant/local.include b/.nant/local.include index 114c12d..0f3b9cd 100644 --- a/.nant/local.include +++ b/.nant/local.include | |||
@@ -1,8 +1,23 @@ | |||
1 | <!-- -*- xml -*- --> | 1 | <!-- -*- xml -*- --> |
2 | <!-- please leave the top comment for us emacs folks --> | 2 | <!-- please leave the top comment for us emacs folks --> |
3 | <property name="projectdir" value="opensim-0.5.5" /> | ||
4 | <property name="nunitcmd" value="nunit-console" /> | 3 | <property name="nunitcmd" value="nunit-console" /> |
5 | 4 | ||
5 | <!-- I don't think these targets are being actively used. But just in case, we'll just comment them out for now - justincc --> | ||
6 | <!-- | ||
7 | <property name="projectdir" value="opensim-0.6.9" /> | ||
8 | <target name="dist" depends="distdir"> | ||
9 | <zip zipfile="${projectdir}.zip"> | ||
10 | <fileset basedir="."> | ||
11 | <include name="${projectdir}/**" /> | ||
12 | </fileset> | ||
13 | </zip> | ||
14 | <tar destfile="${projectdir}.tar.gz" compression="GZip"> | ||
15 | <fileset basedir="."> | ||
16 | <include name="${projectdir}/**" /> | ||
17 | </fileset> | ||
18 | </tar> | ||
19 | </target> | ||
20 | |||
6 | <target name="distdir"> | 21 | <target name="distdir"> |
7 | <delete dir="${projectdir}" /> | 22 | <delete dir="${projectdir}" /> |
8 | <copy todir="${projectdir}"> | 23 | <copy todir="${projectdir}"> |
@@ -21,14 +36,14 @@ | |||
21 | <include name="bin/assets/**" /> | 36 | <include name="bin/assets/**" /> |
22 | <include name="bin/data/**" /> | 37 | <include name="bin/data/**" /> |
23 | <include name="bin/OpenSim*xml" /> | 38 | <include name="bin/OpenSim*xml" /> |
24 | <!-- the next is to exclude built libs --> | ||
25 | <exclude name="bin/OpenSim.*dll" /> | ||
26 | <include name="bin/OpenSim.ini" /> | 39 | <include name="bin/OpenSim.ini" /> |
27 | <include name="bin/defaultstripe.png" /> | 40 | <include name="bin/defaultstripe.png" /> |
41 | <exclude name="bin/OpenSim.*dll" /> | ||
28 | </fileset> | 42 | </fileset> |
29 | </copy> | 43 | </copy> |
30 | <touch file="${projectdir}/bin/startup_commands.txt" /> | 44 | <touch file="${projectdir}/bin/startup_commands.txt" /> |
31 | </target> | 45 | </target> |
46 | --> | ||
32 | 47 | ||
33 | <target name="test" depends="build, find-nunit"> | 48 | <target name="test" depends="build, find-nunit"> |
34 | <setenv name="MONO_THREADS_PER_CPU" value="100" /> | 49 | <setenv name="MONO_THREADS_PER_CPU" value="100" /> |
@@ -296,17 +311,3 @@ | |||
296 | <target name="doxygen"> | 311 | <target name="doxygen"> |
297 | <exec program="doxygen" workingdir="doc" commandline="doxygen.conf" /> | 312 | <exec program="doxygen" workingdir="doc" commandline="doxygen.conf" /> |
298 | </target> | 313 | </target> |
299 | |||
300 | |||
301 | <target name="dist" depends="distdir"> | ||
302 | <zip zipfile="${projectdir}.zip"> | ||
303 | <fileset basedir="."> | ||
304 | <include name="${projectdir}/**" /> | ||
305 | </fileset> | ||
306 | </zip> | ||
307 | <tar destfile="${projectdir}.tar.gz" compression="GZip"> | ||
308 | <fileset basedir="."> | ||
309 | <include name="${projectdir}/**" /> | ||
310 | </fileset> | ||
311 | </tar> | ||
312 | </target> | ||