Changeset 4643 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 16, 2005, 10:43:54 PM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure.ac
r4569 r4643 596 596 src/lib/gui/Makefile 597 597 src/lib/tinyxml/Makefile 598 src/lib/newmat/Makefile 599 src/subprojects/Makefile 598 src/lib/newmat/Makefile src/subprojects/Makefile 600 599 src/subprojects/testmain/Makefile 601 600 src/subprojects/importer/Makefile -
orxonox/trunk/orxonox.kdevelop
r4606 r4643 12 12 <description/> 13 13 <secondaryLanguages/> 14 <versioncontrol/> 14 15 </general> 15 16 <kdevautoproject> 16 17 <general> 17 <activetarget>src/ orxonox</activetarget>18 <activetarget>src/subprojects/particles/particles</activetarget> 18 19 <useconfiguration>default</useconfiguration> 19 20 </general> … … 149 150 <headerCompletionDelay>250</headerCompletionDelay> 150 151 </codecompletion> 152 <creategettersetter> 153 <prefixGet/> 154 <prefixSet>set</prefixSet> 155 <prefixVariable>m_,_</prefixVariable> 156 <parameterName>theValue</parameterName> 157 <inlineGet>true</inlineGet> 158 <inlineSet>true</inlineSet> 159 </creategettersetter> 151 160 </kdevcppsupport> 152 161 <kdevfileview> … … 173 182 </projectdoc> 174 183 </kdevdocumentation> 184 <ctagspart> 185 <customArguments/> 186 <customTagfilePath/> 187 </ctagspart> 175 188 </kdevelop> -
orxonox/trunk/src/Makefile.am
r4571 r4643 15 15 lib/particles/libORXparticles.a \ 16 16 lib/collision_detection/libORXcd.a \ 17 lib/tinyxml/libtinyxml.a \ 18 lib/newmat/libnewmat.a 17 lib/tinyxml/libtinyxml.a 19 18 20 19 orxonox_LDADD = lib/gui/libORXgui.a \ … … 26 25 lib/collision_detection/libORXcd.a \ 27 26 lib/tinyxml/libtinyxml.a \ 28 lib/newmat/libnewmat.a \29 27 $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) 30 28 -
orxonox/trunk/src/Makefile.in
r4571 r4643 241 241 lib/particles/libORXparticles.a \ 242 242 lib/collision_detection/libORXcd.a \ 243 lib/tinyxml/libtinyxml.a \ 244 lib/newmat/libnewmat.a 243 lib/tinyxml/libtinyxml.a 245 244 246 245 orxonox_LDADD = lib/gui/libORXgui.a \ … … 252 251 lib/collision_detection/libORXcd.a \ 253 252 lib/tinyxml/libtinyxml.a \ 254 lib/newmat/libnewmat.a \255 253 $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) 256 254 -
orxonox/trunk/src/lib/Makefile.am
r4569 r4643 9 9 collision_detection \ 10 10 tinyxml \ 11 newmat \12 11 gui \ 13 12 $(GTK_PROGS) -
orxonox/trunk/src/lib/Makefile.in
r4569 r4643 174 174 collision_detection \ 175 175 tinyxml \ 176 newmat \177 176 gui \ 178 177 $(GTK_PROGS) -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r4638 r4643 25 25 #include <math.h> 26 26 27 28 #define WANT_STREAM29 #define WANT_MATH30 #define WANT_FSTREAM31 32 27 #include "stdincl.h" 33 34 #include "include.h"35 #include "newmat.h"36 #include "newmatap.h"37 #include "newmatio.h"38 28 39 29 #include "lin_alg.h"
Note: See TracChangeset
for help on using the changeset viewer.