| 1 | = Installation = |
| 2 | |
| 3 | == Download == |
| 4 | |
| 5 | To get the source code from the SVN repository : \\ |
| 6 | {{{ |
| 7 | #!sh |
| 8 | $ svn co https://devel.hds.utc.fr/svn/pacpussensors/trunk/ |
| 9 | }}} |
| 10 | |
| 11 | It creates a folder named "trunk" containing the code source of every available plugin. |
| 12 | |
| 13 | == Compilation == |
| 14 | |
| 15 | Fist, make sure the CMakeList.txt at the root of the directory is well configured (into trunk/). In order to install the Sick plugin, modify the file and verify you have the following line : |
| 16 | {{{ |
| 17 | #!sh |
| 18 | add_subdirectory(Sick) |
| 19 | }}} |
| 20 | |
| 21 | Then we need to configure the installation : |
| 22 | {{{ |
| 23 | #!sh |
| 24 | $ export PACPUS_ROOT=/opt/pacpus/0.0.2 # Pacpus Framework path |
| 25 | $ cd trunk/build/ # first go into the build folder |
| 26 | $ cmake .. |
| 27 | }}} |
| 28 | |
| 29 | Now we can compile and install : |
| 30 | {{{ |
| 31 | #!sh |
| 32 | $ sudo make install |
| 33 | }}} |
| 34 | |
| 35 | |
| 36 | |
| 37 | = Configuration = |
| 38 | |
| 39 | == XML == |
| 40 | |
| 41 | = Execution = |
| 42 | |