diff options
author | MW | 2007-08-28 18:30:28 +0000 |
---|---|---|
committer | MW | 2007-08-28 18:30:28 +0000 |
commit | c16aafee09bfcce12c3d667cd6ec382e29695490 (patch) | |
tree | c36c20a4c0efa3fbe5351b79d278d57a66e363ff /prebuild.xml | |
parent | startup event on script added to object, not all inside object. (diff) | |
download | opensim-SC_OLD-c16aafee09bfcce12c3d667cd6ec382e29695490.zip opensim-SC_OLD-c16aafee09bfcce12c3d667cd6ec382e29695490.tar.gz opensim-SC_OLD-c16aafee09bfcce12c3d667cd6ec382e29695490.tar.bz2 opensim-SC_OLD-c16aafee09bfcce12c3d667cd6ec382e29695490.tar.xz |
Taken the old scripting engine out of Region.Environment and moved it into a separate module: OpenSim.Region.ExtensionsScriptModule (named as such because the purpose of it is to script server extensions, rather than "user scripting" like Tedd's engine.)
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 0dcaabc..2d475c7 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -595,6 +595,34 @@ | |||
595 | </Files> | 595 | </Files> |
596 | </Project> | 596 | </Project> |
597 | 597 | ||
598 | <Project name="OpenSim.Region.ExtensionsScriptModule" path="OpenSim/Region/ExtensionsScriptModule" type="Library"> | ||
599 | <Configuration name="Debug"> | ||
600 | <Options> | ||
601 | <OutputPath>../../../bin/</OutputPath> | ||
602 | </Options> | ||
603 | </Configuration> | ||
604 | <Configuration name="Release"> | ||
605 | <Options> | ||
606 | <OutputPath>../../../bin/</OutputPath> | ||
607 | </Options> | ||
608 | </Configuration> | ||
609 | |||
610 | <ReferencePath>../../../bin/</ReferencePath> | ||
611 | <Reference name="System"/> | ||
612 | <Reference name="System.Xml"/> | ||
613 | <Reference name="Microsoft.JScript"/> | ||
614 | <Reference name="libsecondlife.dll" /> | ||
615 | <Reference name="OpenSim.Framework"/> | ||
616 | <Reference name="OpenSim.Region.Environment"/> | ||
617 | <Reference name="OpenSim.Framework.Console"/> | ||
618 | <Reference name="Axiom.MathLib.dll"/> | ||
619 | |||
620 | <Files> | ||
621 | <Match pattern="*.cs" recurse="true"/> | ||
622 | </Files> | ||
623 | </Project> | ||
624 | |||
625 | |||
598 | <!-- OpenSim app --> | 626 | <!-- OpenSim app --> |
599 | <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe"> | 627 | <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe"> |
600 | <Configuration name="Debug"> | 628 | <Configuration name="Debug"> |