diff options
author | Adam Frisby | 2009-02-22 08:48:55 +0000 |
---|---|---|
committer | Adam Frisby | 2009-02-22 08:48:55 +0000 |
commit | 937a2e6dcae6c4369ee6952a2697ae31aaba4903 (patch) | |
tree | c205d090b7595a16bd261723a1e3f1bef5dbada8 /prebuild.xml | |
parent | Refactor log4net logger handling in script engine. (#3148) (diff) | |
download | opensim-SC_OLD-937a2e6dcae6c4369ee6952a2697ae31aaba4903.zip opensim-SC_OLD-937a2e6dcae6c4369ee6952a2697ae31aaba4903.tar.gz opensim-SC_OLD-937a2e6dcae6c4369ee6952a2697ae31aaba4903.tar.bz2 opensim-SC_OLD-937a2e6dcae6c4369ee6952a2697ae31aaba4903.tar.xz |
* Adds initial support for the MXP Virtual Worlds protocol (http://www.bubblecloud.org)
* Handled via the MXPModule.cs located in OpenSim.Client.MXP namespace.
* Also implements MXPClientView and MXPPacketServer for IClientAPI compatibility.
* No changes were required to Core to implement this - the thing is self contained in OpenSim.Client.MXP.dll.
* Includes reference implementation of MXP as MXP.dll - this is under the Apache 2.0 license.
* Requires OpenSim.ini setting to enable. "[MXP] \n Enabled=true \n Port=1253"
* May break. Highly untested.
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 13d4c33..f4fd32e 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1494,6 +1494,37 @@ | |||
1494 | <Match pattern="*.cs" recurse="true"/> | 1494 | <Match pattern="*.cs" recurse="true"/> |
1495 | </Files> | 1495 | </Files> |
1496 | </Project> | 1496 | </Project> |
1497 | |||
1498 | |||
1499 | <!-- Client Stack Modules --> | ||
1500 | |||
1501 | |||
1502 | <Project name="OpenSim.Client.MXP" path="OpenSim/Client/MXP" type="Library"> | ||
1503 | <Configuration name="Debug"> | ||
1504 | <Options> | ||
1505 | <OutputPath>../../../bin/</OutputPath> | ||
1506 | </Options> | ||
1507 | </Configuration> | ||
1508 | <Configuration name="Release"> | ||
1509 | <Options> | ||
1510 | <OutputPath>../../../bin/</OutputPath> | ||
1511 | </Options> | ||
1512 | </Configuration> | ||
1513 | |||
1514 | <ReferencePath>../../../bin/</ReferencePath> | ||
1515 | |||
1516 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1517 | <Reference name="OpenMetaverse.dll"/> | ||
1518 | <Reference name="System"/> | ||
1519 | <Reference name="OpenSim.Framework"/> | ||
1520 | <Reference name="OpenSim.Region.Framework"/> | ||
1521 | <Reference name="Nini.dll" /> | ||
1522 | <Reference name="log4net.dll"/> | ||
1523 | <Reference name="MXP.dll"/> | ||
1524 | <Files> | ||
1525 | <Match pattern="*.cs" recurse="true"/> | ||
1526 | </Files> | ||
1527 | </Project> | ||
1497 | 1528 | ||
1498 | <!-- Data Base Modules --> | 1529 | <!-- Data Base Modules --> |
1499 | <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library"> | 1530 | <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library"> |