diff options
author | gareth | 2007-05-08 09:56:20 +0000 |
---|---|---|
committer | gareth | 2007-05-08 09:56:20 +0000 |
commit | cbf492109ccda213971c09d1048e9d26d09d9b37 (patch) | |
tree | c8ab5c60740acf20033c9241410a94854513d029 /prebuild.xml | |
parent | Removed libsl nant build file (diff) | |
download | opensim-SC_OLD-cbf492109ccda213971c09d1048e9d26d09d9b37.zip opensim-SC_OLD-cbf492109ccda213971c09d1048e9d26d09d9b37.tar.gz opensim-SC_OLD-cbf492109ccda213971c09d1048e9d26d09d9b37.tar.bz2 opensim-SC_OLD-cbf492109ccda213971c09d1048e9d26d09d9b37.tar.xz |
Fixed nant build files
Added ExportBot code (ZOMG! IMPORTED THE EXPORT BOT!)
Fixed ExportBot's build
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 71 |
1 files changed, 66 insertions, 5 deletions
diff --git a/prebuild.xml b/prebuild.xml index 6dfed93..63be23e 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -121,8 +121,8 @@ | |||
121 | <Files> | 121 | <Files> |
122 | <Match pattern="*.cs" recurse="true"/> | 122 | <Match pattern="*.cs" recurse="true"/> |
123 | </Files> | 123 | </Files> |
124 | </Project> | 124 | </Project> |
125 | 125 | ||
126 | <!-- Storage Plug-ins --> | 126 | <!-- Storage Plug-ins --> |
127 | <Project name="OpenSim.Storage.LocalStorageDb4o" path="OpenSim.Storage/LocalStorageDb4o" type="Library"> | 127 | <Project name="OpenSim.Storage.LocalStorageDb4o" path="OpenSim.Storage/LocalStorageDb4o" type="Library"> |
128 | <Configuration name="Debug"> | 128 | <Configuration name="Debug"> |
@@ -198,7 +198,7 @@ | |||
198 | <Match pattern="*.cs" recurse="true"/> | 198 | <Match pattern="*.cs" recurse="true"/> |
199 | </Files> | 199 | </Files> |
200 | </Project> | 200 | </Project> |
201 | 201 | ||
202 | <!-- Grid Server Plug-ins --> | 202 | <!-- Grid Server Plug-ins --> |
203 | <Project name="OpenSim.GridInterfaces.Local" path="OpenSim.GridInterfaces/Local" type="Library"> | 203 | <Project name="OpenSim.GridInterfaces.Local" path="OpenSim.GridInterfaces/Local" type="Library"> |
204 | <Configuration name="Debug"> | 204 | <Configuration name="Debug"> |
@@ -734,9 +734,70 @@ | |||
734 | 734 | ||
735 | 735 | ||
736 | 736 | ||
737 | |||
738 | <Solution name="ExportBot" path="ExportBot/" > | ||
739 | <Configuration name="Debug"> | ||
740 | <Options> | ||
741 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | ||
742 | <OptimizeCode>false</OptimizeCode> | ||
743 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
744 | <AllowUnsafe>false</AllowUnsafe> | ||
745 | <WarningLevel>4</WarningLevel> | ||
746 | <WarningsAsErrors>false</WarningsAsErrors> | ||
747 | <SuppressWarnings></SuppressWarnings> | ||
748 | <OutputPath>bin</OutputPath> | ||
749 | <DebugInformation>true</DebugInformation> | ||
750 | <IncrementalBuild>true</IncrementalBuild> | ||
751 | <NoStdLib>false</NoStdLib> | ||
752 | </Options> | ||
753 | </Configuration> | ||
754 | <Configuration name="Release"> | ||
755 | <Options> | ||
756 | <CompilerDefines>TRACE</CompilerDefines> | ||
757 | <OptimizeCode>true</OptimizeCode> | ||
758 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
759 | <AllowUnsafe>false</AllowUnsafe> | ||
760 | <WarningLevel>4</WarningLevel> | ||
761 | <WarningsAsErrors>false</WarningsAsErrors> | ||
762 | <SuppressWarnings></SuppressWarnings> | ||
763 | <OutputPath>bin</OutputPath> | ||
764 | <DebugInformation>false</DebugInformation> | ||
765 | <IncrementalBuild>true</IncrementalBuild> | ||
766 | <NoStdLib>false</NoStdLib> | ||
767 | </Options> | ||
768 | </Configuration> | ||
769 | |||
737 | 770 | ||
738 | 771 | <Project name="ExportBot" path="./" type="Exe"> | |
739 | 772 | <Configuration name="Debug"> | |
773 | <Options> | ||
774 | <OutputPath>../bin/</OutputPath> | ||
775 | </Options> | ||
776 | </Configuration> | ||
777 | <Configuration name="Release"> | ||
778 | <Options> | ||
779 | <OutputPath>../bin/</OutputPath> | ||
780 | </Options> | ||
781 | </Configuration> | ||
782 | |||
783 | <ReferencePath>../bin/</ReferencePath> | ||
784 | <Reference name="System" localCopy="false"/> | ||
785 | <Reference name="System.Xml"/> | ||
786 | <Reference name="libsecondlife.dll"/> | ||
787 | <Reference name="openjpegnet.dll"/> | ||
788 | <Reference name="OpenSim.Framework.dll"/> | ||
789 | <Reference name="OpenSim.Framework.Console.dll"/> | ||
790 | <Reference name="OpenSim.Servers.dll"/> | ||
791 | |||
792 | |||
793 | <Files> | ||
794 | <Match pattern="*.cs" recurse="true"/> | ||
795 | </Files> | ||
796 | </Project> | ||
797 | |||
798 | |||
799 | </Solution> | ||
800 | |||
740 | 801 | ||
741 | 802 | ||
742 | 803 | ||