aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pCampBot/prebuild.xml
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-03 04:13:46 +0000
committerTeravus Ovares2008-02-03 04:13:46 +0000
commitb0c6baaeb05c5f15c951d3128419fac82b399911 (patch)
tree2ca4b26583e5371e2b3fa177574f0ffe76364cbd /pCampBot/prebuild.xml
parentImplements LSL function llDialog(). (diff)
downloadopensim-SC_OLD-b0c6baaeb05c5f15c951d3128419fac82b399911.zip
opensim-SC_OLD-b0c6baaeb05c5f15c951d3128419fac82b399911.tar.gz
opensim-SC_OLD-b0c6baaeb05c5f15c951d3128419fac82b399911.tar.bz2
opensim-SC_OLD-b0c6baaeb05c5f15c951d3128419fac82b399911.tar.xz
* Adding the PhysicsCamperBot load testing app to the SVN in it's own folder. You'll have to build it separately to take advantage of it. *read the Readme file*. The bots created by this application roam around amusingly to simulate load.
* Be smart, Don't use this on a public grid, lest you get banned permanently.
Diffstat (limited to 'pCampBot/prebuild.xml')
-rw-r--r--pCampBot/prebuild.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/pCampBot/prebuild.xml b/pCampBot/prebuild.xml
new file mode 100644
index 0000000..25219fd
--- /dev/null
+++ b/pCampBot/prebuild.xml
@@ -0,0 +1,63 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7">
3 <Solution name="pCampBot" activeConfig="Debug" path="./" version="0.4.0-svn">
4 <Configuration name="Debug">
5 <Options>
6 <CompilerDefines>TRACE;DEBUG</CompilerDefines>
7 <OptimizeCode>false</OptimizeCode>
8 <CheckUnderflowOverflow>false</CheckUnderflowOverflow>
9 <AllowUnsafe>false</AllowUnsafe>
10 <WarningLevel>4</WarningLevel>
11 <WarningsAsErrors>false</WarningsAsErrors>
12 <SuppressWarnings></SuppressWarnings>
13 <OutputPath>../bin</OutputPath>
14 <DebugInformation>true</DebugInformation>
15 <IncrementalBuild>true</IncrementalBuild>
16 <NoStdLib>false</NoStdLib>
17 </Options>
18 </Configuration>
19 <Configuration name="Release">
20 <Options>
21 <CompilerDefines>TRACE</CompilerDefines>
22 <OptimizeCode>true</OptimizeCode>
23 <CheckUnderflowOverflow>false</CheckUnderflowOverflow>
24 <AllowUnsafe>false</AllowUnsafe>
25 <WarningLevel>4</WarningLevel>
26 <WarningsAsErrors>false</WarningsAsErrors>
27 <SuppressWarnings></SuppressWarnings>
28 <OutputPath>../bin</OutputPath>
29 <DebugInformation>false</DebugInformation>
30 <IncrementalBuild>true</IncrementalBuild>
31 <NoStdLib>false</NoStdLib>
32 </Options>
33 </Configuration>
34
35 <!-- Core OpenSim Projects -->
36
37 <Project name="pCampBot" path="./" type="Exe">
38 <Configuration name="Debug">
39 <Options>
40 <OutputPath>../bin/</OutputPath>
41 </Options>
42 </Configuration>
43 <Configuration name="Release">
44 <Options>
45 <OutputPath>../bin/</OutputPath>
46 </Options>
47 </Configuration>
48
49 <ReferencePath>../bin/</ReferencePath>
50 <Reference name="System" localCopy="false"/>
51 <Reference name="libsecondlife.dll"/>
52 <Reference name="OpenSim.Framework.dll"/>
53 <Reference name="OpenSim.Framework.Console.dll"/>
54 <Reference name="Nini.dll" />
55
56
57 <Files>
58 <Match pattern="*.cs" recurse="true"/>
59 </Files>
60 </Project>
61
62 </Solution>
63</Prebuild>