aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml
diff options
context:
space:
mode:
authorAlan M Webb2009-09-16 10:00:00 -0400
committerdr scofield (aka dirk husemann)2009-09-16 16:43:51 +0200
commitd4c98ddffc7b6ac25cd08f57f9f67a33bff91683 (patch)
treed30710d0b87a035fea6cef4a1f79007643f0801d /prebuild.xml
parent This fixes a boundary case error in the strided list (diff)
downloadopensim-SC_OLD-d4c98ddffc7b6ac25cd08f57f9f67a33bff91683.zip
opensim-SC_OLD-d4c98ddffc7b6ac25cd08f57f9f67a33bff91683.tar.gz
opensim-SC_OLD-d4c98ddffc7b6ac25cd08f57f9f67a33bff91683.tar.bz2
opensim-SC_OLD-d4c98ddffc7b6ac25cd08f57f9f67a33bff91683.tar.xz
This fix adds a stand-alone compilation environment
for OpenSIm scripts. It makes it very easy to address coding issues before going in-world to try a script out. This is a HUGE time saver if you're doing anything significant with scripts. Signed-off-by: dr scofield (aka dirk husemann) <drscofield@xyzzyxyzzy.net>
Diffstat (limited to 'prebuild.xml')
-rw-r--r--prebuild.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml
index baa54a1..87925ea 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -3196,6 +3196,33 @@
3196 </Files> 3196 </Files>
3197 </Project> 3197 </Project>
3198 3198
3199 <Project name="lslc" path="OpenSim/Tools/Compiler" type="Exe">
3200 <Configuration name="Debug">
3201 <Options>
3202 <OutputPath>../../../bin/</OutputPath>
3203 </Options>
3204 </Configuration>
3205 <Configuration name="Release">
3206 <Options>
3207 <OutputPath>../../../bin/</OutputPath>
3208 </Options>
3209 </Configuration>
3210
3211 <ReferencePath>../../../bin/</ReferencePath>
3212 <Reference name="System"/>
3213 <Reference name="OpenMetaverseTypes.dll"/>
3214 <Reference name="OpenMetaverse.dll"/>
3215 <Reference name="OpenSim.Framework"/>
3216 <Reference name="OpenSim.Framework.Console"/>
3217 <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
3218 <Reference name="Nini.dll" />
3219 <Reference name="log4net.dll"/>
3220
3221 <Files>
3222 <Match pattern="*.cs" recurse="true"/>
3223 </Files>
3224 </Project>
3225
3199 <!-- Test Suite --> 3226 <!-- Test Suite -->
3200 <Project frameworkVersion="v3_5" name="OpenSim.TestSuite" path="OpenSim/TestSuite" type="Exe"> 3227 <Project frameworkVersion="v3_5" name="OpenSim.TestSuite" path="OpenSim/TestSuite" type="Exe">
3201 <Configuration name="Debug"> 3228 <Configuration name="Debug">