Changes between Version 27 and Version 28 of dev/LinuxUbuntu
- Timestamp:
- Feb 13, 2008, 6:52:18 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxUbuntu
v27 v28 1 1 [[TracNav(TracNav/TOC_install)]] 2 2 = Ubuntu Linux = 3 3 4 ''Last checked: 28. Oct. 2007 by [wiki:BenjaminKnecht Beni] on Ubuntu 7.10 (Gutsy Gibbon)'' 4 5 … … 8 9 9 10 == Dependencies and third party libs == 11 10 12 Packages: cmake, libogre-dev, libcegui-mk2-dev, libois-dev, libenet1-dev, libboost-thread-dev 11 13 … … 15 17 }}} 16 18 Download those with your favorite package manager. 19 17 20 === CEGui === 21 18 22 Using the CEGui package (libcegui) from Ubuntu results in runtime errors during the loading sequence of Ogre. Building CEGui by yourself with the right options solves the problem: 19 23 … … 34 38 }}} 35 39 40 == Get the source == 41 Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir. 42 {{{ 43 $ svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk 44 }}} 45 You won't be able to commit your own code (check in) with the anonymous subversion repository. You have to ask us for a username/password combination. If you already have an account, check it out like this: 46 {{{ 47 $ svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk 48 }}} 49 You will be asked for your username and password, that you got from us. 50 51 == Compile == 52 53 {{{ 54 $ cd orxonox-trunk 55 $ cmake . 56 ... 57 $ make 58 ... 59 $ ./run --mode standalone 60 }}} 61 36 62 == Possible Bugs == 37 63 === Graphics === … … 48 74 }}} 49 75 50 76 ----- 51 77 52 78 [[OutdatedPage]]