diff options
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 132 |
1 files changed, 129 insertions, 3 deletions
diff --git a/prebuild.xml b/prebuild.xml index 91c326c..d536539 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -6,7 +6,7 @@ | |||
6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | 6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> |
7 | <OptimizeCode>false</OptimizeCode> | 7 | <OptimizeCode>false</OptimizeCode> |
8 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | 8 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> |
9 | <AllowUnsafe>false</AllowUnsafe> | 9 | <AllowUnsafe>true</AllowUnsafe> |
10 | <WarningLevel>4</WarningLevel> | 10 | <WarningLevel>4</WarningLevel> |
11 | <WarningsAsErrors>false</WarningsAsErrors> | 11 | <WarningsAsErrors>false</WarningsAsErrors> |
12 | <SuppressWarnings/> | 12 | <SuppressWarnings/> |
@@ -21,7 +21,7 @@ | |||
21 | <CompilerDefines>TRACE</CompilerDefines> | 21 | <CompilerDefines>TRACE</CompilerDefines> |
22 | <OptimizeCode>true</OptimizeCode> | 22 | <OptimizeCode>true</OptimizeCode> |
23 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | 23 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> |
24 | <AllowUnsafe>false</AllowUnsafe> | 24 | <AllowUnsafe>true</AllowUnsafe> |
25 | <WarningLevel>4</WarningLevel> | 25 | <WarningLevel>4</WarningLevel> |
26 | <WarningsAsErrors>false</WarningsAsErrors> | 26 | <WarningsAsErrors>false</WarningsAsErrors> |
27 | <SuppressWarnings/> | 27 | <SuppressWarnings/> |
@@ -561,6 +561,93 @@ | |||
561 | </Files> | 561 | </Files> |
562 | </Project> | 562 | </Project> |
563 | 563 | ||
564 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.ConvexDecompositionDotNet" path="OpenSim/Region/Physics/ConvexDecompositionDotNet" type="Library"> | ||
565 | <Configuration name="Debug"> | ||
566 | <Options> | ||
567 | <OutputPath>../../../../bin/</OutputPath> | ||
568 | </Options> | ||
569 | </Configuration> | ||
570 | <Configuration name="Release"> | ||
571 | <Options> | ||
572 | <OutputPath>../../../../bin/</OutputPath> | ||
573 | </Options> | ||
574 | </Configuration> | ||
575 | |||
576 | <ReferencePath>../../../../bin/</ReferencePath> | ||
577 | <Reference name="System"/> | ||
578 | <Reference name="System.Core"/> | ||
579 | <Reference name="System.Data"/> | ||
580 | <Reference name="System.Xml"/> | ||
581 | |||
582 | <Files> | ||
583 | <Match pattern="*.cs" recurse="true"> | ||
584 | <Exclude name="Tests" pattern="Tests"/> | ||
585 | </Match> | ||
586 | </Files> | ||
587 | </Project> | ||
588 | |||
589 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.ChOdePlugin" path="OpenSim/Region/Physics/ChOdePlugin" type="Library"> | ||
590 | <Configuration name="Debug"> | ||
591 | <Options> | ||
592 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
593 | </Options> | ||
594 | </Configuration> | ||
595 | <Configuration name="Release"> | ||
596 | <Options> | ||
597 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
598 | </Options> | ||
599 | </Configuration> | ||
600 | |||
601 | <ReferencePath>../../../../bin/</ReferencePath> | ||
602 | <Reference name="System"/> | ||
603 | <Reference name="System.Core"/> | ||
604 | <Reference name="OpenMetaverseTypes.dll"/> | ||
605 | <Reference name="Nini.dll" /> | ||
606 | <Reference name="OpenSim.Framework"/> | ||
607 | <Reference name="OpenSim.Framework.Console"/> | ||
608 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
609 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
610 | <Reference name="Ode.NET.dll" /> | ||
611 | <Reference name="log4net.dll"/> | ||
612 | |||
613 | <Files> | ||
614 | <Match pattern="*.cs" recurse="true"> | ||
615 | <Exclude name="Tests" pattern="Tests"/> | ||
616 | </Match> | ||
617 | </Files> | ||
618 | </Project> | ||
619 | |||
620 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.UbitOdePlugin" path="OpenSim/Region/Physics/UbitOdePlugin" type="Library"> | ||
621 | <Configuration name="Debug"> | ||
622 | <Options> | ||
623 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
624 | </Options> | ||
625 | </Configuration> | ||
626 | <Configuration name="Release"> | ||
627 | <Options> | ||
628 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
629 | </Options> | ||
630 | </Configuration> | ||
631 | |||
632 | <ReferencePath>../../../../bin/</ReferencePath> | ||
633 | <Reference name="System"/> | ||
634 | <Reference name="System.Core"/> | ||
635 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> | ||
636 | <Reference name="Nini" path="../../../../bin/"/> | ||
637 | |||
638 | <Reference name="OpenSim.Framework"/> | ||
639 | <Reference name="OpenSim.Framework.Console"/> | ||
640 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
641 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
642 | <Reference name="log4net" path="../../../../bin/"/> | ||
643 | |||
644 | <Files> | ||
645 | <Match pattern="*.cs" recurse="true"> | ||
646 | <Exclude name="Tests" pattern="Tests"/> | ||
647 | </Match> | ||
648 | </Files> | ||
649 | </Project> | ||
650 | |||
564 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library"> | 651 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library"> |
565 | <Configuration name="Debug"> | 652 | <Configuration name="Debug"> |
566 | <Options> | 653 | <Options> |
@@ -592,6 +679,38 @@ | |||
592 | </Files> | 679 | </Files> |
593 | </Project> | 680 | </Project> |
594 | 681 | ||
682 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.UbitMeshing" path="OpenSim/Region/Physics/UbitMeshing" type="Library"> | ||
683 | <Configuration name="Debug"> | ||
684 | <Options> | ||
685 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
686 | </Options> | ||
687 | </Configuration> | ||
688 | <Configuration name="Release"> | ||
689 | <Options> | ||
690 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
691 | </Options> | ||
692 | </Configuration> | ||
693 | |||
694 | <ReferencePath>../../../../bin/</ReferencePath> | ||
695 | <Reference name="System"/> | ||
696 | <Reference name="System.Drawing"/> | ||
697 | <Reference name="CSJ2K" path="../../../../bin/"/> | ||
698 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> | ||
699 | <Reference name="OpenMetaverse" path="../../../../bin/"/> | ||
700 | <Reference name="OpenMetaverse.StructuredData" path="../../../../bin/"/> | ||
701 | <Reference name="Nini" path="../../../../bin/"/> | ||
702 | <Reference name="OpenSim.Framework"/> | ||
703 | <Reference name="OpenSim.Framework.Console"/> | ||
704 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
705 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
706 | <Reference name="log4net" path="../../../../bin/"/> | ||
707 | <Reference name="zlib.net" path="../../../../bin/"/> | ||
708 | |||
709 | <Files> | ||
710 | <Match pattern="*.cs" recurse="true"/> | ||
711 | </Files> | ||
712 | </Project> | ||
713 | |||
595 | <Project frameworkVersion="v3_5" name="OpenSim.Capabilities" path="OpenSim/Capabilities" type="Library"> | 714 | <Project frameworkVersion="v3_5" name="OpenSim.Capabilities" path="OpenSim/Capabilities" type="Library"> |
596 | <Configuration name="Debug"> | 715 | <Configuration name="Debug"> |
597 | <Options> | 716 | <Options> |
@@ -1001,6 +1120,7 @@ | |||
1001 | <Reference name="OpenSim.Server.Base"/> | 1120 | <Reference name="OpenSim.Server.Base"/> |
1002 | <Reference name="OpenSim.Services.Interfaces"/> | 1121 | <Reference name="OpenSim.Services.Interfaces"/> |
1003 | <Reference name="OpenSim.Services.Base"/> | 1122 | <Reference name="OpenSim.Services.Base"/> |
1123 | <Reference name="OpenSim.Server.Base"/> | ||
1004 | <Reference name="OpenSim.Services.Connectors"/> | 1124 | <Reference name="OpenSim.Services.Connectors"/> |
1005 | <Reference name="OpenSim.Data"/> | 1125 | <Reference name="OpenSim.Data"/> |
1006 | <Reference name="Nini" path="../../../bin/"/> | 1126 | <Reference name="Nini" path="../../../bin/"/> |
@@ -1528,9 +1648,10 @@ | |||
1528 | <Reference name="System.Drawing"/> | 1648 | <Reference name="System.Drawing"/> |
1529 | <Reference name="System.Xml"/> | 1649 | <Reference name="System.Xml"/> |
1530 | <Reference name="System.Web"/> | 1650 | <Reference name="System.Web"/> |
1651 | <Reference name="OpenMetaverse" path="../../../../../bin/"/> | ||
1531 | <Reference name="OpenMetaverseTypes" path="../../../../../bin/"/> | 1652 | <Reference name="OpenMetaverseTypes" path="../../../../../bin/"/> |
1532 | <Reference name="OpenMetaverse.StructuredData" path="../../../../../bin/"/> | 1653 | <Reference name="OpenMetaverse.StructuredData" path="../../../../../bin/"/> |
1533 | <Reference name="OpenMetaverse" path="../../../../../bin/"/> | 1654 | |
1534 | <Reference name="OpenSim.Region.Framework"/> | 1655 | <Reference name="OpenSim.Region.Framework"/> |
1535 | <Reference name="OpenSim.Capabilities"/> | 1656 | <Reference name="OpenSim.Capabilities"/> |
1536 | <Reference name="OpenSim.Capabilities.Handlers"/> | 1657 | <Reference name="OpenSim.Capabilities.Handlers"/> |
@@ -1545,6 +1666,7 @@ | |||
1545 | <Reference name="Nini" path="../../../../../bin/"/> | 1666 | <Reference name="Nini" path="../../../../../bin/"/> |
1546 | <Reference name="log4net" path="../../../../../bin/"/> | 1667 | <Reference name="log4net" path="../../../../../bin/"/> |
1547 | <Reference name="Nini" path="../../../../../bin/"/> | 1668 | <Reference name="Nini" path="../../../../../bin/"/> |
1669 | <Reference name="zlib.net" path="../../../../../bin/"/> | ||
1548 | 1670 | ||
1549 | <Files> | 1671 | <Files> |
1550 | <Match pattern="*.cs" recurse="true"> | 1672 | <Match pattern="*.cs" recurse="true"> |
@@ -1611,6 +1733,7 @@ | |||
1611 | 1733 | ||
1612 | <!-- To allow regions to have mono addins --> | 1734 | <!-- To allow regions to have mono addins --> |
1613 | <Reference name="Mono.Addins" path="../../../bin/"/> | 1735 | <Reference name="Mono.Addins" path="../../../bin/"/> |
1736 | <Reference name="SmartThreadPool"/> | ||
1614 | 1737 | ||
1615 | <Files> | 1738 | <Files> |
1616 | <Match buildAction="EmbeddedResource" path="Resources" pattern="*.addin.xml" recurse="true"/> | 1739 | <Match buildAction="EmbeddedResource" path="Resources" pattern="*.addin.xml" recurse="true"/> |
@@ -1692,6 +1815,8 @@ | |||
1692 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | 1815 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> |
1693 | <Reference name="OpenSim.Region.CoreModules"/> | 1816 | <Reference name="OpenSim.Region.CoreModules"/> |
1694 | <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> | 1817 | <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> |
1818 | <Reference name="OpenSim.Region.Framework.Interfaces"/> | ||
1819 | <Reference name="OpenSim.Region.Framework.Scenes"/> | ||
1695 | <Reference name="OpenSim.Region.Framework"/> | 1820 | <Reference name="OpenSim.Region.Framework"/> |
1696 | <Reference name="OpenSim.Region.Physics.Manager"/> | 1821 | <Reference name="OpenSim.Region.Physics.Manager"/> |
1697 | <Reference name="OpenSim.Server.Base"/> | 1822 | <Reference name="OpenSim.Server.Base"/> |
@@ -3171,6 +3296,7 @@ | |||
3171 | <Reference name="OpenSim.Framework.Servers"/> | 3296 | <Reference name="OpenSim.Framework.Servers"/> |
3172 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | 3297 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> |
3173 | <Reference name="OpenSim.Region.Framework"/> | 3298 | <Reference name="OpenSim.Region.Framework"/> |
3299 | <Reference name="OpenSim.Region.Framework.Interfaces"/> | ||
3174 | <Reference name="OpenSim.Region.CoreModules"/> | 3300 | <Reference name="OpenSim.Region.CoreModules"/> |
3175 | <Reference name="OpenSim.Region.OptionalModules"/> | 3301 | <Reference name="OpenSim.Region.OptionalModules"/> |
3176 | <Reference name="OpenSim.Region.Physics.Manager"/> | 3302 | <Reference name="OpenSim.Region.Physics.Manager"/> |