Changes between Version 32 and Version 33 of dev/LinuxGentoo
- Timestamp:
- Sep 17, 2008, 9:34:06 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxGentoo
v32 v33 41 41 Now get a copy of the code by checking out the trunk via anonymous subversion login. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here]. 42 42 {{{ 43 $ svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk43 $ svn co http://svn.orxonox.net/orxonox/trunk trunk 44 44 }}} 45 45 You won't be able to contribute 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 the code out like this: 46 46 {{{ 47 $ svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk47 $ svn co https://svn.orxonox.net/orxonox/trunk trunk 48 48 }}} 49 You will then be asked for the username and password, that you got from us. 50 49 You will then be asked for the username and password, that you got from us. 50 Furthermore, you will need to check out the media repository. This repository contains all the graphics, fonts and sounds for Orxonox. To check it out, do: 51 {{{ 52 $ svn co https://svn.orxonox.net/data/Media media 53 }}} 54 Now make sure, you have set the correct path to you media directory 51 55 52 56 === Compiling === 53 Just c hange into the trunk directory, then execute configure and make....57 Just cd to the trunk directory, then execute configure and make: 54 58 {{{ 55 59 $ cd orxonox-trunk … … 58 62 $ make 59 63 ... 60 $ ./run --mode standalone64 $ ./run 61 65 }}} 62 66 63 ==== Development with KDevelop ==== 64 See [wiki:CMake#UsingCMakewithKDevelop here] 67 === Development with KDevelop === 68 If you would like to use KDevelop for coding, see [wiki:CMake#UsingCMakewithKDevelop this] page for further information. 69 70 ---- 65 71 66 72 [[OutdatedPage]]