diff options
author | gareth | 2007-03-07 18:48:38 +0000 |
---|---|---|
committer | gareth | 2007-03-07 18:48:38 +0000 |
commit | b3844c1f7348b4296b5ab1df258935d7f971e412 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /opensim.build | |
parent | * Updating libsecondlife.dll to the latest version with a working LayerData f... (diff) | |
download | opensim-SC_OLD-b3844c1f7348b4296b5ab1df258935d7f971e412.zip opensim-SC_OLD-b3844c1f7348b4296b5ab1df258935d7f971e412.tar.gz opensim-SC_OLD-b3844c1f7348b4296b5ab1df258935d7f971e412.tar.bz2 opensim-SC_OLD-b3844c1f7348b4296b5ab1df258935d7f971e412.tar.xz |
Deleted old trunk code
Diffstat (limited to '')
-rw-r--r-- | opensim.build | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/opensim.build b/opensim.build deleted file mode 100644 index 2fdf1cb..0000000 --- a/opensim.build +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <project name="OpenSim" default="build" basedir="."> | ||
3 | <description>First nant buildfile for OpenSim</description> | ||
4 | <property name="debug" value="true" overwrite="false" /> | ||
5 | <target name="clean" description="remove all generated files"> | ||
6 | <delete file="bin/OpenSim.exe" failonerror="false" /> | ||
7 | <delete file="bin/OpenSim.pdb" failonerror="false" /> | ||
8 | </target> | ||
9 | |||
10 | <target name="svnupdate" description="updates to latest SVN"> | ||
11 | <exec program="svn"> | ||
12 | <arg value="update" /> | ||
13 | </exec> | ||
14 | </target> | ||
15 | |||
16 | <target name="upgrade" description="updates from SVN and then builds" depends="clean,svnupdate,build"> | ||
17 | |||
18 | </target> | ||
19 | |||
20 | <target name="build" description="compiles the source code"> | ||
21 | |||
22 | <exec program="genvers.sh" /> | ||
23 | <loadfile file="VERSION" property="svnver"/> | ||
24 | |||
25 | <asminfo output="src/AssemblyInfo.cs" language="CSharp"> | ||
26 | <imports> | ||
27 | <import namespace="System" /> | ||
28 | <import namespace="System.Reflection" /> | ||
29 | <import namespace="System.Runtime.InteropServices" /> | ||
30 | </imports> | ||
31 | <attributes> | ||
32 | <attribute type="ComVisibleAttribute" value="false" /> | ||
33 | <attribute type="CLSCompliantAttribute" value="false" /> | ||
34 | <attribute type="AssemblyVersionAttribute" value="${svnver}" /> | ||
35 | <attribute type="AssemblyTitleAttribute" value="opensim" /> | ||
36 | <attribute type="AssemblyDescriptionAttribute" value="The C# implementation of the simulator portion of OGS" /> | ||
37 | <attribute type="AssemblyCopyrightAttribute" value="Copyright © OGS development team 2007"/> | ||
38 | </attributes> | ||
39 | </asminfo> | ||
40 | <csc target="exe" output="bin/OpenSim.exe" debug="${debug}" verbose="true" warninglevel="4"> | ||
41 | <references basedir="bin/" failonempty="true"> | ||
42 | <include name="System" /> | ||
43 | <include name="System.Data" /> | ||
44 | <include name="System.Xml" /> | ||
45 | <include name="Axiom.MathLib.dll" /> | ||
46 | <include name="libsecondlife.dll" /> | ||
47 | <include name="log4net.dll" /> | ||
48 | <include name="Db4objects.Db4o.dll" /> | ||
49 | </references> | ||
50 | <sources basedir="src/"> | ||
51 | <include name="AssemblyInfo.cs" /> | ||
52 | <include name="ServerConsole.cs" /> | ||
53 | <include name="Config.cs" /> | ||
54 | <include name="VersionInfo.cs" /> | ||
55 | <include name="Util.cs" /> | ||
56 | <include name="types/*.cs" /> | ||
57 | <include name="world/*.cs" /> | ||
58 | <include name="OpenSimClient.cs" /> | ||
59 | <include name="Main.cs" /> | ||
60 | </sources> | ||
61 | </csc> | ||
62 | </target> | ||
63 | </project> | ||