Changes between Version 8 and Version 9 of WikiStart
- Timestamp:
- Jun 24, 2013, 4:39:33 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v8 v9 8 8 9 9 ==== Tools ==== 10 * Modern C++ compiler (gcc >= 4.5, clang >= 3.2, MSVC 2008 or newer, etc.) 11 * CMake 2.8.10 or newer 12 * Doxygen (optionally) 10 * Modern C++ compiler (gcc >= 4.5, clang >= 3.2, Microsoft Visual Studio 2008 or newer, etc.) 11 * [http://www.cmake.org/ CMake] 2.8.10 or newer 12 * [http://www.doxygen.org/ Doxygen] (optionally) 13 * [http://subversion.apache.org/ Subversion (SVN)] control version system 13 14 14 15 ==== Libraries ==== 15 * Apache log4cxx0.10.016 * Boost1.50 or newer (optionally)17 * Qt4.8 or newer16 * [http://logging.apache.org/log4cxx/ Apache log4cxx] 0.10.0 17 * [http://www.boost.org/ Boost] 1.50 or newer (optionally) 18 * [http://qt-project.org/ Qt] 4.8 or newer 18 19 19 === Using CMake === 20 21 Checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```. 20 === Getting the source code === 21 To checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```, 22 22 23 23 {{{ … … 26 26 }}} 27 27 28 Without changing directory (stay in ```D:\workspace\pacpus```), create a new directory for build, change the directory to the newly created one and execute CMake. 28 **Note:** You can as well use any GUI wrapper for SVN, such as [http://tortoisesvn.net/ TortoiseSVN]. 29 30 === Using CMake === 31 32 === GUI === 33 You have to point the source code directory, e.g. ```~/workspace/pacpus/framework``` 34 and the build directory, e.g. ```~/workspace/pacpus/framework-build```. 35 Then press ```Configure``` and ```Generate```. 36 You can change the CMake variables as well. 37 38 === Command-line === 39 40 Without changing directory (stay in ```~/workspace/pacpus```), create a new directory for build, change the directory to the newly created one and execute CMake. 29 41 30 42 {{{ … … 38 50 Type ```cmake --help``` for a list of generators available on your platform. 39 51 52 === Compilation === 40 53 If you have created Makefile files, than just run the command: 41 54 {{{