HAMcast developers

Changes between Version 16 and Version 17 of documentation/howto/cmake


Ignore:
Timestamp:
02/09/12 10:26:46 (12 years ago)
Author:
Sebastian Meiling
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/howto/cmake

    v16 v17  
    5454=== libhamcast ===
    5555
    56 Libhamcast is the core library of the HAMcast prototype and must be build first.
     56Libhamcast is the core library of the HAMcast prototype and must be build first. Follow these steps to compile libhamcast:
     57
     58 * change to folder {{{libhamcast/}}}, this is where ''CMakeLists.txt'' lies
     59 * create a build folder, e.g. {{{libhamcast/build}}}
     60 * change to build folder
     61 * run:
     62{{{
     63cmake ../
     64}}}
     65 * If no errors occure cmake creates a ''Makefile'', now run in build folder:
     66{{{
     67make
     68}}}
     69 * Compiled library is stored in build folder.
     70 * '''Note:''' you may copy ''libhamcast.so*'' files to source folder, then you only have to specify ''HAMCAST_INCLUDE_PATH'' for other builds that depend on libhamcast and its header files (see below).
    5771
    5872=== middleware, modules and others ===