Changes between Version 12 and Version 13 of WikiStart
- Timestamp:
- Jun 24, 2013, 4:53:00 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v12 v13 19 19 20 20 === Getting the source code === 21 To checkout Pacpus framework repository into your workspace directory, e.g. into ` ``~/workspace/pacpus```,21 To checkout Pacpus framework repository into your workspace directory, e.g. into `~/workspace/pacpus`, 22 22 23 23 {{{ … … 31 31 32 32 ==== 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```.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`. 36 36 You can change the CMake variables as well. 37 37 38 38 ==== Command-line ==== 39 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.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. 41 41 42 42 {{{ … … 47 47 }}} 48 48 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"`. 50 Type `cmake --help` for a list of generators available on your platform. 51 51 52 52 === Compiling === … … 55 55 make 56 56 }}} 57 or a similar one ( nmake, mingw32-make, etc.).57 or a similar one (`nmake`, `mingw32-make`, etc.). 58 58 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.: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.: 60 60 {{{ 61 61 Pacpus.sln … … 75 75 make install 76 76 }}} 77 or, if you use a GUI-based development environment, you have to build the ` ``INSTALL``` target/project.77 or, if you use a GUI-based development environment, you have to build the `INSTALL` target/project. 78 78 79 79 == Getting started ==