diff options
author | BlueWall | 2010-08-31 17:02:36 -0400 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-09-04 02:12:21 +0100 |
commit | 1e44ec84bd90ec9078027d1d9d78e83c7d305f2a (patch) | |
tree | e34db5ced4bc7bf59b98ff9fb72271dda0f25a33 /Prebuild/prebuild.xml | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-1e44ec84bd90ec9078027d1d9d78e83c7d305f2a.zip opensim-SC-1e44ec84bd90ec9078027d1d9d78e83c7d305f2a.tar.gz opensim-SC-1e44ec84bd90ec9078027d1d9d78e83c7d305f2a.tar.bz2 opensim-SC-1e44ec84bd90ec9078027d1d9d78e83c7d305f2a.tar.xz |
Build system upgrade:
Upgrading Prebuild.exe to correctly construct build solutions
for crossplatform tools such as xbuild, monodevelop and nant.
NOTE: Module prebuild files will need modification to work,
as the prebuild must correctly define the reference path for
all assemblies shipped in the OpenSimulator ./bin directory.
These include assemblies such as XMLRPC.dll, OpenMetaverse.dll,
Nini.dll, etc. . The entries should follow the form:
<Reference name="Nini" path="../../../bin/"/>
See the distributed prebuild.xml for further examples.
Crossplatform tools: xbuild and monodevelop use the
vs2008 OpenSim.sln and the .csproj files in each namespace.
Changes to the Prebuild.exe are against svn 322 and are included
in a patch attached to the mantis. And the dnpb source are
available@ svn co https://dnpb.svn.sourceforge.net/svnroot/dnpb dnpb
The patches are pending application by the dnpb team. After which,
the un-modified upstream Prebuild.exe will work as expected.
Diffstat (limited to '')
-rw-r--r-- | Prebuild/prebuild.xml | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/Prebuild/prebuild.xml b/Prebuild/prebuild.xml deleted file mode 100644 index 1f81086..0000000 --- a/Prebuild/prebuild.xml +++ /dev/null | |||
@@ -1,73 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> | ||
3 | <Solution name="Prebuild" version="2.0.4"> | ||
4 | <Configuration name="Debug"> | ||
5 | <Options> | ||
6 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
7 | <OptimizeCode>false</OptimizeCode> | ||
8 | <OutputPath>bin/Debug</OutputPath> | ||
9 | <DebugInformation>true</DebugInformation> | ||
10 | <SuppressWarnings>1595</SuppressWarnings> | ||
11 | </Options> | ||
12 | </Configuration> | ||
13 | <Configuration name="Release"> | ||
14 | <Options> | ||
15 | <CompilerDefines>TRACE</CompilerDefines> | ||
16 | <OutputPath>bin/Release</OutputPath> | ||
17 | <OptimizeCode>true</OptimizeCode> | ||
18 | <DebugInformation>false</DebugInformation> | ||
19 | <SuppressWarnings>1595</SuppressWarnings> | ||
20 | </Options> | ||
21 | </Configuration> | ||
22 | <Files> | ||
23 | <File>prebuild.xml</File> | ||
24 | <File>prebuild</File> | ||
25 | </Files> | ||
26 | <Project name="Prebuild" | ||
27 | path="src" | ||
28 | language="C#" | ||
29 | assemblyName="prebuild" | ||
30 | icon="App.ico" | ||
31 | type="Exe" | ||
32 | rootNamespace="Prebuild" | ||
33 | startupObject="Prebuild.Prebuild" | ||
34 | version="2.0.3" | ||
35 | > | ||
36 | <Author>Matthew Holmes (matthew@wildfiregames.com)</Author> | ||
37 | <Author>Dan Moorehead (dan05a@gmail.com)</Author> | ||
38 | <Author>Dave Hudson (jendave@yahoo.com)</Author> | ||
39 | <Author>Rob Loach (http://robloach.net)</Author> | ||
40 | <Author>C.J. Adams-Collier (cjac@colliertech.org)</Author> | ||
41 | <Description>The Prebuild project generator</Description> | ||
42 | <Configuration name="Debug"> | ||
43 | <Options> | ||
44 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
45 | <OptimizeCode>false</OptimizeCode> | ||
46 | <OutputPath>bin/Debug</OutputPath> | ||
47 | <DebugInformation>true</DebugInformation> | ||
48 | <KeyFile>Prebuild.snk</KeyFile> | ||
49 | <SuppressWarnings>1595</SuppressWarnings> | ||
50 | </Options> | ||
51 | </Configuration> | ||
52 | <Configuration name="Release"> | ||
53 | <Options> | ||
54 | <CompilerDefines>TRACE</CompilerDefines> | ||
55 | <OutputPath>bin/Release</OutputPath> | ||
56 | <OptimizeCode>true</OptimizeCode> | ||
57 | <DebugInformation>false</DebugInformation> | ||
58 | <KeyFile>Prebuild.snk</KeyFile> | ||
59 | <SuppressWarnings>1595</SuppressWarnings> | ||
60 | </Options> | ||
61 | </Configuration> | ||
62 | <Reference name="System.EnterpriseServices" /> | ||
63 | <Reference name="System.Xml" /> | ||
64 | <Reference name="System" /> | ||
65 | <Files> | ||
66 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | ||
67 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | ||
68 | <Match path="data" pattern="autotools.xml" buildAction="EmbeddedResource"/> | ||
69 | <Match pattern="*.cs" recurse="true"/> | ||
70 | </Files> | ||
71 | </Project> | ||
72 | </Solution> | ||
73 | </Prebuild> | ||