Changes between Version 8 and Version 9 of WikiStart


Ignore:
Timestamp:
06/24/13 16:39:33 (11 years ago)
Author:
Marek Kurdej
Comment:

CMake GUI, links

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v8 v9  
    88
    99==== 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
    1314
    1415==== Libraries ====
    15 * Apache log4cxx 0.10.0
    16 * Boost 1.50 or newer (optionally)
    17 * Qt 4.8 or newer
     16* [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
    1819
    19 === Using CMake ===
    20 
    21 Checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```.
     20=== Getting the source code ===
     21To checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```,
    2222
    2323{{{
     
    2626}}}
    2727
    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 ===
     33You have to point the source code directory, e.g. ```~/workspace/pacpus/framework```
     34and the build directory, e.g. ```~/workspace/pacpus/framework-build```.
     35Then press ```Configure``` and ```Generate```.
     36You can change the CMake variables as well.
     37
     38=== Command-line ===
     39
     40Without changing directory (stay in ```~/workspace/pacpus```), create a new directory for build, change the directory to the newly created one and execute CMake.
    2941
    3042{{{
     
    3850Type ```cmake --help``` for a list of generators available on your platform.
    3951
     52=== Compilation ===
    4053If you have created Makefile files, than just run the command:
    4154{{{