diff options
author | Justin Clark-Casey (justincc) | 2012-02-25 00:36:28 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-25 00:36:28 +0000 |
commit | f9066e7d8657204b575c4d3c31151d6814991e0a (patch) | |
tree | eefa3e9a221b0e88b40e8faeaf2dbb38806aeb6e | |
parent | llGetLinkMedia, llSetLinkMedia, llClearLinkMedia implementation mantis: http:... (diff) | |
download | opensim-SC_OLD-f9066e7d8657204b575c4d3c31151d6814991e0a.zip opensim-SC_OLD-f9066e7d8657204b575c4d3c31151d6814991e0a.tar.gz opensim-SC_OLD-f9066e7d8657204b575c4d3c31151d6814991e0a.tar.bz2 opensim-SC_OLD-f9066e7d8657204b575c4d3c31151d6814991e0a.tar.xz |
Establish a distsrc nant target for producing the source distribution.
This is in addition to the distbin target. The distbin target now needs distsrc to be run first.
Still needs some extra tweaking that I shall eventually put in as sed invocations or similar.
Diffstat (limited to '')
-rw-r--r-- | .nant/local.include | 14 |
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> |