diff options
author | lbsa71 | 2007-03-22 10:56:45 +0000 |
---|---|---|
committer | lbsa71 | 2007-03-22 10:56:45 +0000 |
commit | d86911a44c05fa45b5600f45dbd8878c3b805ace (patch) | |
tree | 2b2e8dc2db737115bc12ae42483ffcf69270489d | |
parent | brought in bin/ from zircon (diff) | |
download | opensim-SC_OLD-d86911a44c05fa45b5600f45dbd8878c3b805ace.zip opensim-SC_OLD-d86911a44c05fa45b5600f45dbd8878c3b805ace.tar.gz opensim-SC_OLD-d86911a44c05fa45b5600f45dbd8878c3b805ace.tar.bz2 opensim-SC_OLD-d86911a44c05fa45b5600f45dbd8878c3b805ace.tar.xz |
* Fixed so name of exe is OpenSim.exe
-rw-r--r-- | OpenSim.RegionServer/OpenSim.exe.build | 67 | ||||
-rw-r--r-- | OpenSim.build | 6 | ||||
-rw-r--r-- | prebuild.xml | 12 |
3 files changed, 81 insertions, 4 deletions
diff --git a/OpenSim.RegionServer/OpenSim.exe.build b/OpenSim.RegionServer/OpenSim.exe.build new file mode 100644 index 0000000..86ee484 --- /dev/null +++ b/OpenSim.RegionServer/OpenSim.exe.build | |||
@@ -0,0 +1,67 @@ | |||
1 | <?xml version="1.0" ?> | ||
2 | <project name="OpenSim" default="build"> | ||
3 | <target name="build"> | ||
4 | <echo message="Build Directory is ${project::get-base-directory()}/${build.dir}" /> | ||
5 | <mkdir dir="${project::get-base-directory()}/${build.dir}" /> | ||
6 | <copy todir="${project::get-base-directory()}/${build.dir}"> | ||
7 | <fileset basedir="${project::get-base-directory()}"> | ||
8 | </fileset> | ||
9 | </copy> | ||
10 | <csc target="exe" debug="${build.debug}" unsafe="False" define="TRACE;DEBUG" output="${project::get-base-directory()}/${build.dir}/${project::get-name()}.exe"> | ||
11 | <resources prefix="OpenSim" dynamicprefix="true" > | ||
12 | </resources> | ||
13 | <sources failonempty="true"> | ||
14 | <include name="Grid.cs" /> | ||
15 | <include name="OpenSimApplication.cs" /> | ||
16 | <include name="OpenSimMain.cs" /> | ||
17 | <include name="OpenSimRoot.cs" /> | ||
18 | <include name="QueItem.cs" /> | ||
19 | <include name="SimClient.cs" /> | ||
20 | <include name="SimConsole.cs" /> | ||
21 | <include name="VersionInfo.cs" /> | ||
22 | <include name="Assets/AssetCache.cs" /> | ||
23 | <include name="Assets/InventoryCache.cs" /> | ||
24 | <include name="CAPS/SimHttp.cs" /> | ||
25 | <include name="types/Mesh.cs" /> | ||
26 | <include name="types/Triangle.cs" /> | ||
27 | <include name="UserServer/LocalUserProfileManager.cs" /> | ||
28 | <include name="UserServer/LoginServer.cs" /> | ||
29 | <include name="world/Avatar.cs" /> | ||
30 | <include name="world/Entity.cs" /> | ||
31 | <include name="world/Primitive.cs" /> | ||
32 | <include name="world/ScriptEngine.cs" /> | ||
33 | <include name="world/SurfacePatch.cs" /> | ||
34 | <include name="world/World.cs" /> | ||
35 | <include name="world/scripting/IScript.cs" /> | ||
36 | </sources> | ||
37 | <references basedir="${project::get-base-directory()}"> | ||
38 | <lib> | ||
39 | <include name="${project::get-base-directory()}" /> | ||
40 | <include name="${project::get-base-directory()}/${build.dir}" /> | ||
41 | </lib> | ||
42 | <include name="System.dll" /> | ||
43 | <include name="System.Xml.dll.dll" /> | ||
44 | <include name="../bin/libsecondlife.dll" /> | ||
45 | <include name="../bin/Axiom.MathLib.dll" /> | ||
46 | <include name="../bin/Db4objects.Db4o.dll" /> | ||
47 | <include name="../OpenSim.Framework.Console/${build.dir}/OpenSim.Framework.Console.dll" /> | ||
48 | <include name="../OpenSim.Physics/Manager/${build.dir}/OpenSim.Physics.Manager.dll" /> | ||
49 | <include name="../OpenSim.Framework/${build.dir}/OpenSim.Framework.dll" /> | ||
50 | </references> | ||
51 | </csc> | ||
52 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../bin/" /> | ||
53 | <mkdir dir="${project::get-base-directory()}/../bin/"/> | ||
54 | <copy todir="${project::get-base-directory()}/../bin/"> | ||
55 | <fileset basedir="${project::get-base-directory()}/${build.dir}/" > | ||
56 | <include name="*.dll"/> | ||
57 | <include name="*.exe"/> | ||
58 | </fileset> | ||
59 | </copy> | ||
60 | </target> | ||
61 | <target name="clean"> | ||
62 | <delete dir="${bin.dir}" failonerror="false" /> | ||
63 | <delete dir="${obj.dir}" failonerror="false" /> | ||
64 | </target> | ||
65 | <target name="doc" description="Creates documentation."> | ||
66 | </target> | ||
67 | </project> | ||
diff --git a/OpenSim.build b/OpenSim.build index 6013f9d..8f5c415 100644 --- a/OpenSim.build +++ b/OpenSim.build | |||
@@ -53,9 +53,9 @@ | |||
53 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="clean" /> | 53 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="clean" /> |
54 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="clean" /> | 54 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="clean" /> |
55 | <nant buildfile="OpenSim.Framework/OpenSim.Framework.dll.build" target="clean" /> | 55 | <nant buildfile="OpenSim.Framework/OpenSim.Framework.dll.build" target="clean" /> |
56 | <nant buildfile="OpenSim.RegionServer/OpenSim.RegionServer.exe.build" target="clean" /> | ||
57 | <nant buildfile="OpenSim.Physics/Manager/OpenSim.Physics.Manager.dll.build" target="clean" /> | 56 | <nant buildfile="OpenSim.Physics/Manager/OpenSim.Physics.Manager.dll.build" target="clean" /> |
58 | <nant buildfile="OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.dll.build" target="clean" /> | 57 | <nant buildfile="OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.dll.build" target="clean" /> |
58 | <nant buildfile="OpenSim.RegionServer/OpenSim.exe.build" target="clean" /> | ||
59 | </target> | 59 | </target> |
60 | 60 | ||
61 | <target name="build" depends="init" description=""> | 61 | <target name="build" depends="init" description=""> |
@@ -67,7 +67,7 @@ | |||
67 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="build" /> | 67 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="build" /> |
68 | <nant buildfile="OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.dll.build" target="build" /> | 68 | <nant buildfile="OpenSim.Physics/BasicPhysicsPlugin/OpenSim.Physics.BasicPhysicsPlugin.dll.build" target="build" /> |
69 | <nant buildfile="OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.dll.build" target="build" /> | 69 | <nant buildfile="OpenSim.Physics/PhysXPlugin/OpenSim.Physics.PhysXPlugin.dll.build" target="build" /> |
70 | <nant buildfile="OpenSim.RegionServer/OpenSim.RegionServer.exe.build" target="build" /> | 70 | <nant buildfile="OpenSim.RegionServer/OpenSim.exe.build" target="build" /> |
71 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="build" /> | 71 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="build" /> |
72 | </target> | 72 | </target> |
73 | 73 | ||
@@ -86,9 +86,9 @@ | |||
86 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="doc" /> | 86 | <nant buildfile="OpenSim.GridInterfaces/Remote/OpenSim.GridInterfaces.Remote.dll.build" target="doc" /> |
87 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="doc" /> | 87 | <nant buildfile="OpenSim.Storage/LocalStorageDb4o/OpenSim.Storage.LocalStorageDb4o.dll.build" target="doc" /> |
88 | <nant buildfile="OpenSim.Framework/OpenSim.Framework.dll.build" target="doc" /> | 88 | <nant buildfile="OpenSim.Framework/OpenSim.Framework.dll.build" target="doc" /> |
89 | <nant buildfile="OpenSim.RegionServer/OpenSim.RegionServer.exe.build" target="doc" /> | ||
90 | <nant buildfile="OpenSim.Physics/Manager/OpenSim.Physics.Manager.dll.build" target="doc" /> | 89 | <nant buildfile="OpenSim.Physics/Manager/OpenSim.Physics.Manager.dll.build" target="doc" /> |
91 | <nant buildfile="OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.dll.build" target="doc" /> | 90 | <nant buildfile="OpenSim.GridInterfaces/Local/OpenSim.GridInterfaces.Local.dll.build" target="doc" /> |
91 | <nant buildfile="OpenSim.RegionServer/OpenSim.exe.build" target="doc" /> | ||
92 | </target> | 92 | </target> |
93 | 93 | ||
94 | </project> | 94 | </project> |
diff --git a/prebuild.xml b/prebuild.xml index ca3ac2f..45cafb6 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -215,7 +215,7 @@ | |||
215 | </Project> | 215 | </Project> |
216 | 216 | ||
217 | <!-- OpenSim app --> | 217 | <!-- OpenSim app --> |
218 | <Project name="OpenSim.RegionServer" path="OpenSim.RegionServer" type="Exe" startupObject="OpenSim.RegionServer"> | 218 | <Project name="OpenSim" path="OpenSim.RegionServer" type="Exe" startupObject="OpenSim"> |
219 | <Configuration name="Debug"> | 219 | <Configuration name="Debug"> |
220 | <Options> | 220 | <Options> |
221 | <OutputPath>../bin/</OutputPath> | 221 | <OutputPath>../bin/</OutputPath> |
@@ -267,6 +267,16 @@ | |||
267 | </Files> | 267 | </Files> |
268 | </Project> | 268 | </Project> |
269 | </Solution> | 269 | </Solution> |
270 | |||
271 | |||
272 | |||
273 | |||
274 | |||
275 | |||
276 | |||
277 | |||
278 | |||
279 | <!-- Prebuild tool --> | ||
270 | <Solution name="Prebuild" path="./Prebuild/" > | 280 | <Solution name="Prebuild" path="./Prebuild/" > |
271 | <Configuration name="Debug"> | 281 | <Configuration name="Debug"> |
272 | <Options> | 282 | <Options> |