Changes between Version 16 and Version 17 of dev/VisualStudio
- Timestamp:
- Jun 2, 2010, 11:16:39 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/VisualStudio
v16 v17 9 9 10 10 === Getting everything set and done === 11 1. Checkout the HEAD revision of the trunk or of any branch you like. Also checkout the media repository and put it on the same directory level as your source checkout. More information can be found in the [wiki:SVN] section. [[br]][[br]]12 1. The next thing is getting the external dependencies. We supply these as precompiled [wiki:download archives] (see at the bottom) with the lib, dll and include files. You might also be interested in the debug symbols to step through the dependency libraries. Once you got the archive, put it in the directory of your source checkout folder and extract it right there (not in a new folder). This will create a folder named "dependencies" that includes everything necessary. [[br]][[br]]11 1. Checkout the HEAD revision of the trunk or of any branch you like. Also checkout the data repository and put it on the same directory level as your source checkout. More information can be found in the [wiki:SVN] section. [[br]][[br]] 12 1. The next thing is getting the external dependencies. We supply these as precompiled [wiki:download archives] (see at the bottom) with the lib, dll, pdb and include files. Once you got the archive, put it in the directory of your source checkout folder and extract it right there (not in a new folder). This will create a folder named "dependencies" that includes everything necessary. [[br]][[br]] 13 13 14 14 You should now have a directory structure like this: 15 15 {{{ 16 media(repository checkout, you choose the name..)16 data_external (repository checkout, you choose the name..) 17 17 ... 18 18 trunk (repository checkout, you choose the name..) … … 30 30 31 31 1. We use CMake to have better cross platform support. Get the latest (at least v2.6) binaries at [http://www.cmake.org/cmake/resources/software.html cmake.org] and extract/install them. 32 1. Run bin/cmake-gui.exeand select your source checkout folder ('trunk' in my example above). The binary folder below can be anywhere except the source folder itself. We suggest trunk/build.32 1. Run the CMake GUI and select your source checkout folder ('trunk' in my example above). The binary folder below can be anywhere except the source folder itself. We suggest trunk/build. 33 33 1. Hit configure 34 34 1. If you need additional configuration options, have a look a the [wiki:Buildsystem General Build Options Page]. 35 35 1. Hit "configure" again (or as long as "generate" is unavailable) and then "generate". You will be prompted to select a generator. Choose the Visual Studio version you have (64 bit is not yet supported!). 36 36 1. Go to your freshly created binary folder, open Orxonox.sln and hit F7. That will build orxonox. 37 1. On the left you see all targets, make sure that ' Orxonox' is bold by right clicking on it and selecting "Set as StartUp Project".37 1. On the left you see all targets, make sure that 'orxonox-main' is bold by right clicking on it and selecting "Set as StartUp Project". 38 38 1. F5 will start the game. 39 39 [[br]]