diff options
Added OpenSim.Client.Linden which is a (non shared) region module that creates and initialises the LindenClientStack (or actually whatever client stack was set in opensim.ini) for that region. Currently this module is still at a early stage so just for testing, so its hardcoded to be disabled. To enable first turn off auto creation of the client stack in opensimbase (see last revision) and then in OpenSim.Client.Linden.LLClientStackModule change bool m_createClientStack = false; to true.
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 0b42592..5a1fcaa 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1712,6 +1712,39 @@ | |||
1712 | </Files> | 1712 | </Files> |
1713 | </Project> | 1713 | </Project> |
1714 | 1714 | ||
1715 | <Project name="OpenSim.Client.Linden" path="OpenSim/Client/Linden" type="Library"> | ||
1716 | <Configuration name="Debug"> | ||
1717 | <Options> | ||
1718 | <OutputPath>../../../bin/</OutputPath> | ||
1719 | </Options> | ||
1720 | </Configuration> | ||
1721 | <Configuration name="Release"> | ||
1722 | <Options> | ||
1723 | <OutputPath>../../../bin/</OutputPath> | ||
1724 | </Options> | ||
1725 | </Configuration> | ||
1726 | |||
1727 | <ReferencePath>../../../bin/</ReferencePath> | ||
1728 | |||
1729 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1730 | <Reference name="OpenMetaverse.dll"/> | ||
1731 | <Reference name="System"/> | ||
1732 | <Reference name="OpenSim.Framework"/> | ||
1733 | <Reference name="OpenSim.Region.Framework"/> | ||
1734 | <Reference name="OpenSim.Framework.Communications"/> | ||
1735 | <Reference name="Nini.dll" /> | ||
1736 | <Reference name="log4net.dll"/> | ||
1737 | <Reference name="protobuf-net"/> | ||
1738 | <Reference name="MXP.dll"/> | ||
1739 | <Reference name="OpenSim.Region.ClientStack"/> | ||
1740 | <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> | ||
1741 | <Files> | ||
1742 | <Match pattern="*.cs" recurse="true"/> | ||
1743 | </Files> | ||
1744 | </Project> | ||
1745 | |||
1746 | |||
1747 | |||
1715 | <!-- Data Base Modules --> | 1748 | <!-- Data Base Modules --> |
1716 | <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library"> | 1749 | <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library"> |
1717 | <Configuration name="Debug"> | 1750 | <Configuration name="Debug"> |