diff options
author | Teravus Ovares | 2008-05-30 12:27:06 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-30 12:27:06 +0000 |
commit | 1a47ff8094ee414a47aebd310826906d89428a09 (patch) | |
tree | 0e90b3a33f43ff8617a077bb57b86d6b28e63e71 /prebuild.xml | |
parent | * Fixed a dangling event hook that I added. (diff) | |
download | opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.zip opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.gz opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.bz2 opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.xz |
* This is Melanie's XEngine script engine. I've not tested this real well, however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 2122d9e..2320a94 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1345,6 +1345,63 @@ | |||
1345 | </Files> | 1345 | </Files> |
1346 | </Project> | 1346 | </Project> |
1347 | 1347 | ||
1348 | <Project name="OpenSim.Region.ScriptEngine.XEngine.Script" path="OpenSim/Region/ScriptEngine/XEngine/Script" type="Library"> | ||
1349 | <Configuration name="Debug"> | ||
1350 | <Options> | ||
1351 | <OutputPath>../../../../../bin/</OutputPath> | ||
1352 | </Options> | ||
1353 | </Configuration> | ||
1354 | <Configuration name="Release"> | ||
1355 | <Options> | ||
1356 | <OutputPath>../../../../../bin/</OutputPath> | ||
1357 | </Options> | ||
1358 | </Configuration> | ||
1359 | |||
1360 | <ReferencePath>../../../../../bin/</ReferencePath> | ||
1361 | <Reference name="System" localCopy="false"/> | ||
1362 | <Reference name="System.Data" localCopy="false"/> | ||
1363 | <Reference name="System.Web" localCopy="false"/> | ||
1364 | <Reference name="System.Xml" localCopy="false"/> | ||
1365 | <Reference name="libsecondlife.dll"/> | ||
1366 | <Reference name="OpenSim" /> | ||
1367 | <Reference name="OpenSim.Framework"/> | ||
1368 | <Reference name="OpenSim.Framework.Communications"/> | ||
1369 | <Reference name="OpenSim.Region.Environment" /> | ||
1370 | <Reference name="OpenSim.Framework.Console"/> | ||
1371 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
1372 | <Reference name="Nini.dll" /> | ||
1373 | <Reference name="RAIL.dll"/> | ||
1374 | <Reference name="Nini.dll" /> | ||
1375 | <Reference name="log4net"/> | ||
1376 | |||
1377 | <Files> | ||
1378 | <Match pattern="*.cs" recurse="true"/> | ||
1379 | </Files> | ||
1380 | </Project> | ||
1381 | |||
1382 | <Project name="SmartThreadPool" path="ThirdParty/SmartThreadPool" type="Library"> | ||
1383 | <Configuration name="Debug"> | ||
1384 | <Options> | ||
1385 | <OutputPath>../../bin/</OutputPath> | ||
1386 | </Options> | ||
1387 | </Configuration> | ||
1388 | <Configuration name="Release"> | ||
1389 | <Options> | ||
1390 | <OutputPath>../../bin/</OutputPath> | ||
1391 | </Options> | ||
1392 | </Configuration> | ||
1393 | |||
1394 | <ReferencePath>../../bin/</ReferencePath> | ||
1395 | <Reference name="System" localCopy="false"/> | ||
1396 | <Reference name="System.Xml"/> | ||
1397 | <Reference name="System.Data"/> | ||
1398 | <Reference name="System.Web"/> | ||
1399 | <Files> | ||
1400 | <Match pattern="*.cs" recurse="false"/> | ||
1401 | </Files> | ||
1402 | </Project> | ||
1403 | |||
1404 | |||
1348 | 1405 | ||
1349 | <!-- OGS projects --> | 1406 | <!-- OGS projects --> |
1350 | 1407 | ||
@@ -1571,6 +1628,43 @@ | |||
1571 | </Files> | 1628 | </Files> |
1572 | </Project> | 1629 | </Project> |
1573 | 1630 | ||
1631 | <Project name="OpenSim.Region.ScriptEngine.XEngine" path="OpenSim/Region/ScriptEngine/XEngine" type="Library"> | ||
1632 | <Configuration name="Debug"> | ||
1633 | <Options> | ||
1634 | <OutputPath>../../../../bin/ScriptEngines/</OutputPath> | ||
1635 | </Options> | ||
1636 | </Configuration> | ||
1637 | <Configuration name="Release"> | ||
1638 | <Options> | ||
1639 | <OutputPath>../../../../bin/ScriptEngines/</OutputPath> | ||
1640 | </Options> | ||
1641 | </Configuration> | ||
1642 | |||
1643 | <ReferencePath>../../../../bin/</ReferencePath> | ||
1644 | <Reference name="System" localCopy="false"/> | ||
1645 | <Reference name="System.Data" localCopy="false"/> | ||
1646 | <Reference name="System.Xml" localCopy="false"/> | ||
1647 | <Reference name="System.Runtime.Remoting" localCopy="false"/> | ||
1648 | <Reference name="libsecondlife.dll"/> | ||
1649 | <Reference name="RAIL.dll"/> | ||
1650 | <Reference name="OpenSim.Framework"/> | ||
1651 | <Reference name="OpenSim.Framework.Console"/> | ||
1652 | <Reference name="OpenSim.Framework.Communications"/> | ||
1653 | <Reference name="OpenSim.Region.Environment" /> | ||
1654 | <Reference name="OpenSim.Region.ScriptEngine.XEngine.Script" /> | ||
1655 | <Reference name="Microsoft.JScript"/> | ||
1656 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
1657 | <Reference name="Nini.dll" /> | ||
1658 | <Reference name="SmartThreadPool" /> | ||
1659 | <Reference name="log4net"/> | ||
1660 | |||
1661 | <Files> | ||
1662 | <Match path="AsyncCommandPlugins" pattern="*.cs" recurse="false"/> | ||
1663 | <Match pattern="*.cs" recurse="false"/> | ||
1664 | </Files> | ||
1665 | </Project> | ||
1666 | |||
1667 | |||
1574 | 1668 | ||
1575 | <Project name="OpenSim.Grid.ScriptServer" path="OpenSim/Grid/ScriptServer" type="Exe"> | 1669 | <Project name="OpenSim.Grid.ScriptServer" path="OpenSim/Grid/ScriptServer" type="Exe"> |
1576 | <Configuration name="Debug"> | 1670 | <Configuration name="Debug"> |