diff options
author | Justin Clark-Casey (justincc) | 2012-02-25 00:49:05 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-25 00:49:05 +0000 |
commit | 82cdb08c1fd49ca27c508ab217116873345470d3 (patch) | |
tree | c1aedb0ce728c3744276b9cb4c5c6ea48cdfa35b | |
parent | Merge branch 'master' into 0.7.3-post-fixes (diff) | |
parent | Establish a distsrc nant target for producing the source distribution. (diff) | |
download | opensim-SC_OLD-82cdb08c1fd49ca27c508ab217116873345470d3.zip opensim-SC_OLD-82cdb08c1fd49ca27c508ab217116873345470d3.tar.gz opensim-SC_OLD-82cdb08c1fd49ca27c508ab217116873345470d3.tar.bz2 opensim-SC_OLD-82cdb08c1fd49ca27c508ab217116873345470d3.tar.xz |
Merge branch 'master' into 0.7.3-post-fixes
-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> |