Changeset 3555 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Mar 15, 2005, 2:23:52 AM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/ChangeLog
r1956 r3555 1 2005-03-15 Patrick Boenzli <patrick@orxonox.ethz.ch> 2 parenting finished 3 4 2005-03-09 Patrick Boenzli <patrick@orxonox.ethz.ch> 5 Big Cleanup again 6 7 2005-03-01 Benjamin Grauer <bensch@orxonox.ethz.ch> 8 Added Light Class 9 10 2005-02-27 Benjamin Grauer <bensch@orxonox.ethz.ch> 11 Big Configure.ac-cleanup 12 13 2005-02-22 David Gruetter <davgr@gmx.ch> 14 Added Skysphere 15 16 2005-01-07 Patrick Boenzli <patrick@orxonox.ethz.ch> 17 LoadScreen implemented 18 19 2004-12-20 Patrick Boenzli <patrick@orxonox.ethz.ch> 20 New Version out 0.2.1-pre-alpha 21 22 2004-12-20 Patrick Boenzli <patrick@orxonox.ethz.ch> 23 HEAVY cleanup of the framework 24 25 2004-12-18 Patrick Boenzli <patrick@orxonox.ethz.ch> 26 enhanced the Command Node 27 28 2004-12-15 Nico Benold <bernoldn@ee.ethz.ch> 29 OS X support 30 31 2004-12-15 Benjamin Grauer <bensch@orxonox.ethz.ch> 32 Defined standard coding rules 33 34 2004-12-15 Benjamin Grauer <bensch@orxonox.ethz.ch> 35 Added Importer for showing 3D Object. 36 37 2004-11-07 David Gruetter <davgr@gmx.ch> 38 Shaded Terrain 39 40 2004-10-23 Adrian Buerli <buerlia@ee.ethz.ch> 41 Dynamic Mountains, dynamic movement. 42 43 2004-10-18 Patrick Boenzli <patrick@orxonox.ethz.ch> 44 Release 0.1-pre-alpha 45 46 2004-07-17 Christian Meyer <cmeyer@ee.ethz.ch> 47 SDL-Framework 48 49 2004-06-09 Tom of ethz 50 Added endless Mountains 51 52 2004-06-02 Benjamin Grauer <bensch@orxonox.ethz.ch> 53 Added Console 54 55 2004-05-20 Patrick Boenzli <patrick@orxonox.ethz.ch> 56 Added the ability to shoot 57 58 2004-05-05 Benjamin Grauer <bensch@orxonox.ethz.ch> 59 Added the GUI. 60 61 2004-04-21 Patrik Boenzli <patrick@orxonox.ethz.ch> 62 Added Makefile to orxonox 63 64 2004-04-25 Amir Guindehi <amir@guindehi.ch> 65 Created Project Orxonox 66 67 68 -
orxonox/trunk/INSTALL
r1956 r3555 1 2 INSTALLATION INSTRUCTIONS FOR ORXONOX 3 ===================================== 4 5 INSTALLATION 6 ============ 7 8 To make it quite easy for those of you who just want to install orxonox: 9 10 1. ./configure 11 2. make 12 3. make install 13 14 (Further Information please see below at autoconf information) 15 16 DEPENDENCIES 17 ============ 18 19 There are some dependencies for orxonox you have to install: 20 21 1. SDL (http://www.libsdl.org) 22 2. OPENGL (http://www.opengl.org) 23 3. SDL_mixer (http://www.libsdl.org/projects/SDL_mixer) 24 4. SDL_image (http://www.libsdl.org/projects/SDL_image) 25 5. SDL_ttf (http://www.libsdl.org/projects/SDL_ttf) 26 a) needs libttf (http://www.freetype.org/) 27 28 Nice to Have: 29 6. Doxygen (http://www.stack.nl/~dimitri/doxygen/) 30 7. Automake (http://www.gnu.org/software/automake/) 31 8. Autoconf (http://www.gnu.org/software/autoconf/) 32 33 Windows Users also need the following: 34 9. mingw (http://mingw.org/) 35 36 37 BUGS 38 ==== 39 Send bug reports to orxonox-dev@mail.datacore.ch 40 41 ORXONOX-> 42 ########################################################## 43 <-AUTOCONF 44 45 46 1 47 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software 2 48 Foundation, Inc. -
orxonox/trunk/src/INSTALL
r1956 r3555 3 3 ===================================== 4 4 5 Installing an using orx is very simple: Just type: 5 INSTALLATION 6 ============ 6 7 7 cd ../orxonox/trunk 8 ./configure 9 make 10 ./bin/orxonox 8 To make it quite easy for those of you who just want to install orxonox: 9 10 1. ./configure 11 2. make 12 3. make install 13 14 DEPENDENCIES 15 ============ 16 17 There are some dependencies for orxonox you have to install: 18 19 1. SDL (http://www.libsdl.org) 20 2. OPENGL (http://www.opengl.org) 21 3. SDL_mixer (http://www.libsdl.org/projects/SDL_mixer) 22 4. SDL_image (http://www.libsdl.org/projects/SDL_image) 23 5. SDL_ttf (http://www.libsdl.org/projects/SDL_ttf) 24 a) needs libttf (http://www.freetype.org/) 25 26 Nice to Have: 27 6. Doxygen (http://www.stack.nl/~dimitri/doxygen/) 28 7. Automake (http://www.gnu.org/software/automake/) 29 8. Autoconf (http://www.gnu.org/software/autoconf/) 30 31 Windows Users also need the following: 32 9. mingw (http://mingw.org/) 11 33 12 34 -
orxonox/trunk/src/Makefile.in
r3549 r3555 319 319 esac; \ 320 320 done; \ 321 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/Makefile'; \321 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ 322 322 cd $(top_srcdir) && \ 323 $(AUTOMAKE) -- gnusrc/Makefile323 $(AUTOMAKE) --foreign src/Makefile 324 324 .PRECIOUS: Makefile 325 325 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/Makefile.in
r3528 r3555 181 181 esac; \ 182 182 done; \ 183 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/Makefile'; \183 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/Makefile'; \ 184 184 cd $(top_srcdir) && \ 185 $(AUTOMAKE) -- gnusrc/lib/Makefile185 $(AUTOMAKE) --foreign src/lib/Makefile 186 186 .PRECIOUS: Makefile 187 187 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/Makefile.in
r3528 r3555 175 175 esac; \ 176 176 done; \ 177 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile'; \177 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/Makefile'; \ 178 178 cd $(top_srcdir) && \ 179 $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile179 $(AUTOMAKE) --foreign src/lib/graphics/Makefile 180 180 .PRECIOUS: Makefile 181 181 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/importer/Makefile.in
r3528 r3555 215 215 esac; \ 216 216 done; \ 217 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile'; \217 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile'; \ 218 218 cd $(top_srcdir) && \ 219 $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile219 $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile 220 220 .PRECIOUS: Makefile 221 221 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/gui/Makefile.in
r3528 r3555 177 177 esac; \ 178 178 done; \ 179 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/gui/Makefile'; \179 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/gui/Makefile'; \ 180 180 cd $(top_srcdir) && \ 181 $(AUTOMAKE) -- gnusrc/lib/gui/Makefile181 $(AUTOMAKE) --foreign src/lib/gui/Makefile 182 182 .PRECIOUS: Makefile 183 183 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/gui/console/Makefile.in
r3528 r3555 203 203 esac; \ 204 204 done; \ 205 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/gui/console/Makefile'; \205 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/gui/console/Makefile'; \ 206 206 cd $(top_srcdir) && \ 207 $(AUTOMAKE) -- gnusrc/lib/gui/console/Makefile207 $(AUTOMAKE) --foreign src/lib/gui/console/Makefile 208 208 .PRECIOUS: Makefile 209 209 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/gui/gui/Makefile.in
r3528 r3555 236 236 esac; \ 237 237 done; \ 238 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/gui/gui/Makefile'; \238 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/gui/gui/Makefile'; \ 239 239 cd $(top_srcdir) && \ 240 $(AUTOMAKE) -- gnusrc/lib/gui/gui/Makefile240 $(AUTOMAKE) --foreign src/lib/gui/gui/Makefile 241 241 .PRECIOUS: Makefile 242 242 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/Makefile.in
r3549 r3555 175 175 esac; \ 176 176 done; \ 177 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/Makefile'; \177 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/Makefile'; \ 178 178 cd $(top_srcdir) && \ 179 $(AUTOMAKE) -- gnusrc/subprojects/Makefile179 $(AUTOMAKE) --foreign src/subprojects/Makefile 180 180 .PRECIOUS: Makefile 181 181 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/testmain/Makefile.in
r3549 r3555 195 195 esac; \ 196 196 done; \ 197 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile'; \197 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile'; \ 198 198 cd $(top_srcdir) && \ 199 $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile199 $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile 200 200 .PRECIOUS: Makefile 201 201 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset
for help on using the changeset viewer.