diff options
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 125 |
1 files changed, 123 insertions, 2 deletions
diff --git a/prebuild.xml b/prebuild.xml index f10607d..416fdc0 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/> |
@@ -556,6 +556,93 @@ | |||
556 | </Files> | 556 | </Files> |
557 | </Project> | 557 | </Project> |
558 | 558 | ||
559 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.ConvexDecompositionDotNet" path="OpenSim/Region/Physics/ConvexDecompositionDotNet" type="Library"> | ||
560 | <Configuration name="Debug"> | ||
561 | <Options> | ||
562 | <OutputPath>../../../../bin/</OutputPath> | ||
563 | </Options> | ||
564 | </Configuration> | ||
565 | <Configuration name="Release"> | ||
566 | <Options> | ||
567 | <OutputPath>../../../../bin/</OutputPath> | ||
568 | </Options> | ||
569 | </Configuration> | ||
570 | |||
571 | <ReferencePath>../../../../bin/</ReferencePath> | ||
572 | <Reference name="System"/> | ||
573 | <Reference name="System.Core"/> | ||
574 | <Reference name="System.Data"/> | ||
575 | <Reference name="System.Xml"/> | ||
576 | |||
577 | <Files> | ||
578 | <Match pattern="*.cs" recurse="true"> | ||
579 | <Exclude name="Tests" pattern="Tests"/> | ||
580 | </Match> | ||
581 | </Files> | ||
582 | </Project> | ||
583 | |||
584 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.ChOdePlugin" path="OpenSim/Region/Physics/ChOdePlugin" type="Library"> | ||
585 | <Configuration name="Debug"> | ||
586 | <Options> | ||
587 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
588 | </Options> | ||
589 | </Configuration> | ||
590 | <Configuration name="Release"> | ||
591 | <Options> | ||
592 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
593 | </Options> | ||
594 | </Configuration> | ||
595 | |||
596 | <ReferencePath>../../../../bin/</ReferencePath> | ||
597 | <Reference name="System"/> | ||
598 | <Reference name="System.Core"/> | ||
599 | <Reference name="OpenMetaverseTypes.dll"/> | ||
600 | <Reference name="Nini.dll" /> | ||
601 | <Reference name="OpenSim.Framework"/> | ||
602 | <Reference name="OpenSim.Framework.Console"/> | ||
603 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
604 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
605 | <Reference name="Ode.NET.dll" /> | ||
606 | <Reference name="log4net.dll"/> | ||
607 | |||
608 | <Files> | ||
609 | <Match pattern="*.cs" recurse="true"> | ||
610 | <Exclude name="Tests" pattern="Tests"/> | ||
611 | </Match> | ||
612 | </Files> | ||
613 | </Project> | ||
614 | |||
615 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.UbitOdePlugin" path="OpenSim/Region/Physics/UbitOdePlugin" type="Library"> | ||
616 | <Configuration name="Debug"> | ||
617 | <Options> | ||
618 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
619 | </Options> | ||
620 | </Configuration> | ||
621 | <Configuration name="Release"> | ||
622 | <Options> | ||
623 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
624 | </Options> | ||
625 | </Configuration> | ||
626 | |||
627 | <ReferencePath>../../../../bin/</ReferencePath> | ||
628 | <Reference name="System"/> | ||
629 | <Reference name="System.Core"/> | ||
630 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> | ||
631 | <Reference name="Nini" path="../../../../bin/"/> | ||
632 | |||
633 | <Reference name="OpenSim.Framework"/> | ||
634 | <Reference name="OpenSim.Framework.Console"/> | ||
635 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
636 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
637 | <Reference name="log4net" path="../../../../bin/"/> | ||
638 | |||
639 | <Files> | ||
640 | <Match pattern="*.cs" recurse="true"> | ||
641 | <Exclude name="Tests" pattern="Tests"/> | ||
642 | </Match> | ||
643 | </Files> | ||
644 | </Project> | ||
645 | |||
559 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library"> | 646 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library"> |
560 | <Configuration name="Debug"> | 647 | <Configuration name="Debug"> |
561 | <Options> | 648 | <Options> |
@@ -587,6 +674,38 @@ | |||
587 | </Files> | 674 | </Files> |
588 | </Project> | 675 | </Project> |
589 | 676 | ||
677 | <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.UbitMeshing" path="OpenSim/Region/Physics/UbitMeshing" type="Library"> | ||
678 | <Configuration name="Debug"> | ||
679 | <Options> | ||
680 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
681 | </Options> | ||
682 | </Configuration> | ||
683 | <Configuration name="Release"> | ||
684 | <Options> | ||
685 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
686 | </Options> | ||
687 | </Configuration> | ||
688 | |||
689 | <ReferencePath>../../../../bin/</ReferencePath> | ||
690 | <Reference name="System"/> | ||
691 | <Reference name="System.Drawing"/> | ||
692 | <Reference name="CSJ2K" path="../../../../bin/"/> | ||
693 | <Reference name="OpenMetaverseTypes" path="../../../../bin/"/> | ||
694 | <Reference name="OpenMetaverse" path="../../../../bin/"/> | ||
695 | <Reference name="OpenMetaverse.StructuredData" path="../../../../bin/"/> | ||
696 | <Reference name="Nini" path="../../../../bin/"/> | ||
697 | <Reference name="OpenSim.Framework"/> | ||
698 | <Reference name="OpenSim.Framework.Console"/> | ||
699 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
700 | <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/> | ||
701 | <Reference name="log4net" path="../../../../bin/"/> | ||
702 | <Reference name="zlib.net" path="../../../../bin/"/> | ||
703 | |||
704 | <Files> | ||
705 | <Match pattern="*.cs" recurse="true"/> | ||
706 | </Files> | ||
707 | </Project> | ||
708 | |||
590 | <Project frameworkVersion="v3_5" name="OpenSim.Capabilities" path="OpenSim/Capabilities" type="Library"> | 709 | <Project frameworkVersion="v3_5" name="OpenSim.Capabilities" path="OpenSim/Capabilities" type="Library"> |
591 | <Configuration name="Debug"> | 710 | <Configuration name="Debug"> |
592 | <Options> | 711 | <Options> |
@@ -990,6 +1109,7 @@ | |||
990 | <Reference name="OpenSim.Server.Base"/> | 1109 | <Reference name="OpenSim.Server.Base"/> |
991 | <Reference name="OpenSim.Services.Interfaces"/> | 1110 | <Reference name="OpenSim.Services.Interfaces"/> |
992 | <Reference name="OpenSim.Services.Base"/> | 1111 | <Reference name="OpenSim.Services.Base"/> |
1112 | <Reference name="OpenSim.Server.Base"/> | ||
993 | <Reference name="OpenSim.Services.Connectors"/> | 1113 | <Reference name="OpenSim.Services.Connectors"/> |
994 | <Reference name="OpenSim.Data"/> | 1114 | <Reference name="OpenSim.Data"/> |
995 | <Reference name="Nini" path="../../../bin/"/> | 1115 | <Reference name="Nini" path="../../../bin/"/> |
@@ -2277,6 +2397,7 @@ | |||
2277 | 2397 | ||
2278 | <ReferencePath>../../../../../../bin/</ReferencePath> | 2398 | <ReferencePath>../../../../../../bin/</ReferencePath> |
2279 | <Reference name="System"/> | 2399 | <Reference name="System"/> |
2400 | <Reference name="System.Core"/> | ||
2280 | <Reference name="System.Data"/> | 2401 | <Reference name="System.Data"/> |
2281 | <Reference name="System.Web"/> | 2402 | <Reference name="System.Web"/> |
2282 | <Reference name="System.Xml"/> | 2403 | <Reference name="System.Xml"/> |