Changes between Version 13 and Version 14 of WikiStart
- Timestamp:
- Jun 24, 2013, 5:00:51 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v13 v14 21 21 To checkout Pacpus framework repository into your workspace directory, e.g. into `~/workspace/pacpus`, 22 22 23 {{{ 23 {{{#!sh 24 24 cd ~/workspace/pacpus 25 25 svn co https://devel.hds.utc.fr/svn/pacpusframework/trunk framework … … 40 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 {{{#!sh 43 43 cd ~/workspace/pacpus 44 44 mkdir framework-build … … 52 52 === Compiling === 53 53 If you have created Makefile files, than just run the command: 54 {{{ 54 {{{#!sh 55 55 make 56 56 }}} … … 58 58 59 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 {{{#!sh 61 61 Pacpus.sln 62 62 }}} … … 72 72 73 73 Once you have successfully compiled Pacpus Framework, you can install it using: 74 {{{ 74 {{{#!sh 75 75 make install 76 76 }}}