diff options
author | Johan Berntsson | 2008-06-20 01:35:54 +0000 |
---|---|---|
committer | Johan Berntsson | 2008-06-20 01:35:54 +0000 |
commit | 20e403685345e0e85d2eb54557b61dddc0af885e (patch) | |
tree | 91651802445b37bb6d64a6277a2b4231b14673a6 /prebuild.xml | |
parent | Mantis#1573. Thank you kindly, Mikem for a patch to our (diff) | |
download | opensim-SC_OLD-20e403685345e0e85d2eb54557b61dddc0af885e.zip opensim-SC_OLD-20e403685345e0e85d2eb54557b61dddc0af885e.tar.gz opensim-SC_OLD-20e403685345e0e85d2eb54557b61dddc0af885e.tar.bz2 opensim-SC_OLD-20e403685345e0e85d2eb54557b61dddc0af885e.tar.xz |
Implemented plugin support for ClientStack, with LindenUDP as the default plugin. This makes it easy for developers to experiment with alternative communication protocols
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 7413b1b..1b24fa7 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -819,6 +819,43 @@ | |||
819 | <Reference name="log4net.dll"/> | 819 | <Reference name="log4net.dll"/> |
820 | 820 | ||
821 | <Files> | 821 | <Files> |
822 | <Match pattern="*.cs" recurse="false"/> | ||
823 | </Files> | ||
824 | </Project> | ||
825 | |||
826 | <!-- ClientStack Plugins --> | ||
827 | <Project name="OpenSim.Region.ClientStack.LindenUDP" path="OpenSim/Region/ClientStack/LindenUDP" type="Library"> | ||
828 | <Configuration name="Debug"> | ||
829 | <Options> | ||
830 | <OutputPath>../../../../bin/</OutputPath> | ||
831 | </Options> | ||
832 | </Configuration> | ||
833 | <Configuration name="Release"> | ||
834 | <Options> | ||
835 | <OutputPath>../../../../bin/</OutputPath> | ||
836 | </Options> | ||
837 | </Configuration> | ||
838 | |||
839 | <ReferencePath>../../../../bin/</ReferencePath> | ||
840 | <Reference name="System" localCopy="false"/> | ||
841 | <Reference name="System.Xml"/> | ||
842 | <Reference name="libsecondlife.dll"/> | ||
843 | <Reference name="Axiom.MathLib.dll"/> | ||
844 | <Reference name="OpenSim.Region.Environment"/> | ||
845 | <Reference name="OpenSim.Framework"/> | ||
846 | <Reference name="OpenSim.Data"/> | ||
847 | <Reference name="OpenSim.Framework.Servers"/> | ||
848 | <Reference name="OpenSim.Framework.Console"/> | ||
849 | <Reference name="OpenSim.Framework.Communications"/> | ||
850 | <Reference name="OpenSim.Framework.Statistics"/> | ||
851 | <Reference name="OpenSim.Region.ClientStack"/> | ||
852 | <Reference name="OpenSim.Region.Communications.Local"/> | ||
853 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
854 | <Reference name="XMLRPC.dll"/> | ||
855 | <Reference name="Nini.dll" /> | ||
856 | <Reference name="log4net.dll"/> | ||
857 | |||
858 | <Files> | ||
822 | <Match pattern="*.cs" recurse="true"/> | 859 | <Match pattern="*.cs" recurse="true"/> |
823 | </Files> | 860 | </Files> |
824 | </Project> | 861 | </Project> |
@@ -1900,6 +1937,7 @@ | |||
1900 | <Reference name="OpenSim.Framework.Console"/> | 1937 | <Reference name="OpenSim.Framework.Console"/> |
1901 | <Reference name="OpenSim.Region.Environment"/> | 1938 | <Reference name="OpenSim.Region.Environment"/> |
1902 | <Reference name="OpenSim.Region.ClientStack"/> | 1939 | <Reference name="OpenSim.Region.ClientStack"/> |
1940 | <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> | ||
1903 | <Reference name="OpenSim.Region.Physics.Manager"/> | 1941 | <Reference name="OpenSim.Region.Physics.Manager"/> |
1904 | <Reference name="libsecondlife.dll"/> | 1942 | <Reference name="libsecondlife.dll"/> |
1905 | <Files> | 1943 | <Files> |