Changes between Version 5 and Version 6 of WikiStart


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

using CMake

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v5 v6  
     1[[PageOutline(1-10,Contents,inline)]]
     2
    13= PACPUS framework =
    24
     
    1315* Boost 1.50 or newer (optionally)
    1416* Qt 4.8 or newer
     17
     18=== Using CMake ===
     19
     20Checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```.
     21
     22{{{
     23cd ~/workspace/pacpus
     24svn co https://devel.hds.utc.fr/svn/pacpusframework/trunk framework
     25}}}
     26
     27Without 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
     29{{{
     30cd ~/workspace/pacpus
     31mkdir framework-build
     32cd framework-build
     33cmake ../framework -G "Unix Makefiles"
     34}}}
     35
     36**Note:** You can specify a different makefile generator instead of ```-G "Unix Makefiles"```.
     37Type ```cmake --help``` for a list of generators available on your platform.
     38
     39If you have created Makefile files, than just run the command:
     40{{{
     41make
     42}}}
     43or a similar one (nmake, mingw32-make, etc.).
     44
     45If you have created project files (for example using option ```-G Visual Studio 11``), than just open the solution file **Pacpus.(extension)**, e.g.:
     46{{{
     47Pacpus.sln
     48}}}
    1549
    1650== Installation ==