aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
diff options
context:
space:
mode:
Diffstat (limited to '.nant/local.include')
-rw-r--r--.nant/local.include14
1 files changed, 10 insertions, 4 deletions
diff --git a/.nant/local.include b/.nant/local.include
index 4fa3e4d..7d16810 100644
--- a/.nant/local.include
+++ b/.nant/local.include
@@ -2,13 +2,19 @@
2<!-- please leave the top comment for us emacs folks --> 2<!-- please leave the top comment for us emacs folks -->
3<property name="nunitcmd" value="nunit-console" /> 3<property name="nunitcmd" value="nunit-console" />
4 4
5<!-- For safety/laziness sake, we're going to take the approach of deleting known extraneous files here rather than 5<!-- This target produces a source distribution of OpenSimulator -->
6 trying to copy across only the essential ones --> 6<!-- TODO: A few parameters still need to be tweaked after running this - need to do this automatically with sed or similar -->
7<property name="distbindir" value="distbin" /> 7<target name="distsrc">
8<target name="distbin">
9 <copy file="bin/OpenSim.ini.example" tofile="bin/OpenSim.ini"/> 8 <copy file="bin/OpenSim.ini.example" tofile="bin/OpenSim.ini"/>
10 <copy file="bin/config-include/StandaloneCommon.ini.example" tofile="bin/config-include/StandaloneCommon.ini"/> 9 <copy file="bin/config-include/StandaloneCommon.ini.example" tofile="bin/config-include/StandaloneCommon.ini"/>
11 <copy file="bin/config-include/FlotsamCache.ini.example" tofile="bin/config-include/FlotsamCache.ini"/> 10 <copy file="bin/config-include/FlotsamCache.ini.example" tofile="bin/config-include/FlotsamCache.ini"/>
11</target>
12
13<property name="distbindir" value="distbin" />
14<!-- This target produces a binary directory called distbin/ in OpenSim/bin which contains everything needed for binary distribution -->
15<!-- For safety/laziness sake, we're going to take the approach of deleting known extraneous files here rather than
16 trying to copy across only the essential ones -->
17<target name="distbin">
12 <delete dir="${distbindir}"/> 18 <delete dir="${distbindir}"/>
13 <copy todir="${distbindir}"> 19 <copy todir="${distbindir}">
14 <fileset> 20 <fileset>