Changes between Version 12 and Version 13 of WikiStart


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

italics

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v12 v13  
    1919
    2020=== Getting the source code ===
    21 To checkout Pacpus framework repository into your workspace directory, e.g. into ```~/workspace/pacpus```,
     21To checkout Pacpus framework repository into your workspace directory, e.g. into `~/workspace/pacpus`,
    2222
    2323{{{
     
    3131
    3232==== GUI ====
    33 You have to point the source code directory with the root ```CMakeLists.txt``` file, e.g. ```~/workspace/pacpus/framework```
    34 and the build directory, e.g. ```~/workspace/pacpus/framework-build```.
    35 Then press ```Configure``` and ```Generate```.
     33You have to point the source code directory with the root `CMakeLists.txt` file, e.g. `~/workspace/pacpus/framework`
     34and the build directory, e.g. `~/workspace/pacpus/framework-build`.
     35Then press `Configure` and `Generate`.
    3636You can change the CMake variables as well.
    3737
    3838==== Command-line ====
    3939
    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.
     40Without changing directory (stay in `~/workspace/pacpus`), create a new directory for build, change the directory to the newly created one and execute CMake.
    4141
    4242{{{
     
    4747}}}
    4848
    49 **Note:** You can specify a different makefile generator instead of ```-G "Unix Makefiles"```.
    50 Type ```cmake --help``` for a list of generators available on your platform.
     49**Note:** You can specify a different makefile generator instead of `-G "Unix Makefiles"`.
     50Type `cmake --help` for a list of generators available on your platform.
    5151
    5252=== Compiling ===
     
    5555make
    5656}}}
    57 or a similar one (nmake, mingw32-make, etc.).
     57or a similar one (`nmake`, `mingw32-make`, etc.).
    5858
    59 If you have created project files (for example using option ```-G Visual Studio 11``), than just open the solution file **Pacpus.(extension)**, e.g.:
     59If you have created project files (for example using option `-G Visual Studio 11`), than just open the solution file **Pacpus.(extension)**, e.g.:
    6060{{{
    6161Pacpus.sln
     
    7575make install
    7676}}}
    77 or, if you use a GUI-based development environment, you have to build the ```INSTALL``` target/project.
     77or, if you use a GUI-based development environment, you have to build the `INSTALL` target/project.
    7878
    7979== Getting started ==