Changes between Version 2 and Version 3 of documentation/tools/img
- Timestamp:
- 02/14/12 08:59:12 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
documentation/tools/img
v2 v3 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 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 img [OPTION]... 46 46 }}} 47 47 … … 81 81 Without CONFIG file: 82 82 {{{ 83 83 ./img -g ip://239.238.237.236:1234 -d 1 -u 2 84 84 }}} 85 85 With CONFIG file: 86 86 {{{ 87 87 ./img -f img.cfg -d 1 -u 2 88 88 }}} 89 89