aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml
diff options
context:
space:
mode:
authorteravus2012-12-23 15:21:25 -0500
committerteravus2012-12-23 15:21:25 -0500
commit92e4f9f412046f8f7926c99c9e56c3a8b6b2edbf (patch)
treeeabcbb758a7512222e84cb51b51b6822cdbf561b /prebuild.xml
parentRevert "Whitespace change to trigger bot" (diff)
downloadopensim-SC_OLD-92e4f9f412046f8f7926c99c9e56c3a8b6b2edbf.zip
opensim-SC_OLD-92e4f9f412046f8f7926c99c9e56c3a8b6b2edbf.tar.gz
opensim-SC_OLD-92e4f9f412046f8f7926c99c9e56c3a8b6b2edbf.tar.bz2
opensim-SC_OLD-92e4f9f412046f8f7926c99c9e56c3a8b6b2edbf.tar.xz
* Initial commit of BulletSimN (BulletSNPlugin). Purely C# implementation of BulletSim. This is designed to be /as close as possible/ to the BulletSim plugin while still being entirely in the managed space to make keeping it up to date easy as possible (no thinking work). This implementation is /slower/ then the c++ version just because it's fully managed, so it's not appropriate for huge sims, but it will run small ones OK. At the moment, it supports all known features of BulletSim. Think of it like.. POS but everything works. To use this plugin, set the physics plugin to BulletSimN.
Diffstat (limited to 'prebuild.xml')
-rw-r--r--prebuild.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml
index 14ffc99..741b660 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -1756,6 +1756,40 @@
1756 </Files> 1756 </Files>
1757 </Project> 1757 </Project>
1758 1758
1759 <Project frameworkVersion="v3_5" name="OpenSim.Region.Physics.BulletSNPlugin" path="OpenSim/Region/Physics/BulletSNPlugin" type="Library">
1760 <Configuration name="Debug">
1761 <Options>
1762 <OutputPath>../../../../bin/Physics/</OutputPath>
1763 </Options>
1764 </Configuration>
1765 <Configuration name="Release">
1766 <Options>
1767 <OutputPath>../../../../bin/Physics/</OutputPath>
1768 </Options>
1769 </Configuration>
1770
1771 <ReferencePath>../../../../bin/</ReferencePath>
1772 <Reference name="System"/>
1773 <Reference name="System.Core"/>
1774 <Reference name="System.Xml"/>
1775 <Reference name="OpenMetaverseTypes" path="../../../../bin/"/>
1776 <Reference name="Nini.dll" path="../../../../bin/"/>
1777 <Reference name="OpenSim.Framework"/>
1778 <Reference name="OpenSim.Region.Framework"/>
1779 <Reference name="OpenSim.Region.CoreModules"/>
1780 <Reference name="OpenSim.Framework.Console"/>
1781 <Reference name="OpenSim.Region.Physics.Manager"/>
1782 <Reference name="OpenSim.Region.Physics.ConvexDecompositionDotNet"/>
1783 <Reference name="BulletXNA.dll" path="../../../../bin/"/>
1784 <Reference name="log4net.dll" path="../../../../bin/"/>
1785
1786 <Files>
1787 <Match pattern="*.cs" recurse="true">
1788 <Exclude name="Tests" pattern="Tests"/>
1789 </Match>
1790 </Files>
1791 </Project>
1792
1759 <!-- OpenSim app --> 1793 <!-- OpenSim app -->
1760 <Project frameworkVersion="v3_5" name="OpenSim" path="OpenSim/Region/Application" type="Exe"> 1794 <Project frameworkVersion="v3_5" name="OpenSim" path="OpenSim/Region/Application" type="Exe">
1761 <Configuration name="Debug"> 1795 <Configuration name="Debug">