aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-03-26 19:33:19 +0000
committerJustin Clark-Casey (justincc)2010-03-26 19:36:21 +0000
commit4d712ddaaef8772a6b8a96c26b948e9f827578f4 (patch)
tree307845f0b5272f8af6848891a548b263027f54f9 /.nant/local.include
parentswitch flavor to RC1 (diff)
downloadopensim-SC_OLD-4d712ddaaef8772a6b8a96c26b948e9f827578f4.zip
opensim-SC_OLD-4d712ddaaef8772a6b8a96c26b948e9f827578f4.tar.gz
opensim-SC_OLD-4d712ddaaef8772a6b8a96c26b948e9f827578f4.tar.bz2
opensim-SC_OLD-4d712ddaaef8772a6b8a96c26b948e9f827578f4.tar.xz
comment out very probably unused dist and distdir nant targets
Diffstat (limited to '')
-rw-r--r--.nant/local.include32
1 files changed, 17 insertions, 15 deletions
diff --git a/.nant/local.include b/.nant/local.include
index 5e02665..d4c7fb0 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}">
@@ -29,6 +44,7 @@
29 </copy> 44 </copy>
30 <touch file="${projectdir}/bin/startup_commands.txt" /> 45 <touch file="${projectdir}/bin/startup_commands.txt" />
31</target> 46</target>
47-->
32 48
33<target name="test" depends="build, find-nunit"> 49<target name="test" depends="build, find-nunit">
34 <setenv name="MONO_THREADS_PER_CPU" value="100" /> 50 <setenv name="MONO_THREADS_PER_CPU" value="100" />
@@ -317,17 +333,3 @@
317<target name="doxygen"> 333<target name="doxygen">
318 <exec program="doxygen" workingdir="doc" commandline="doxygen.conf" /> 334 <exec program="doxygen" workingdir="doc" commandline="doxygen.conf" />
319</target> 335</target>
320
321
322<target name="dist" depends="distdir">
323 <zip zipfile="${projectdir}.zip">
324 <fileset basedir=".">
325 <include name="${projectdir}/**" />
326 </fileset>
327 </zip>
328 <tar destfile="${projectdir}.tar.gz" compression="GZip">
329 <fileset basedir=".">
330 <include name="${projectdir}/**" />
331 </fileset>
332 </tar>
333</target>