Changes between Version 5 and Version 6 of documentation/tools/hcstatus
- Timestamp:
- 02/14/12 09:00:12 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
documentation/tools/hcstatus
v5 v6 20 20 and run: 21 21 {{{ 22 22 cmake ../ 23 23 }}} 24 24 if you have not install libhamcast to standard directories, run: 25 25 {{{ 26 27 26 cmake -DHAMCAST_INCLUDE_PATH=<path-to-headers> \ 27 -DHAMCAST_LIBRARY_PATH=<path-to-libhamcast> ../ 28 28 }}} 29 29 'path-to-headers' is the absolute path where 'hamcast/hamcast.hpp' can … … 32 32 This will initialize the build environment, if no errors occure run: 33 33 {{{ 34 34 make 35 35 }}} 36 36 If build was successful you find the binary in 'build' folder. … … 43 43 44 44 {{{ 45 45 hc_status [GROUPS]... 46 46 }}} 47 47 … … 64 64 Without args: 65 65 {{{ 66 ./hc_status66 ./hc_status 67 67 }}} 68 68 With args: 69 69 {{{ 70 ./hc_status ip://239.238.237.236:1234 ip://239.1.2.3:789070 ./hc_status ip://239.238.237.236:1234 ip://239.1.2.3:7890 71 71 }}} 72 72 … … 85 85 86 86 LD_LIBRARY_PATH must be set if libhamcast is not installed into 87 standard directories, e.g. /usr/lib.87 standard directories, e.g. {{{/usr/lib}}}.