diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-03 15:28:03 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-09 15:28:26 +0000 |
commit | 25903e6eaaa0c068b9b51bdc93e659d257be6f4d (patch) | |
tree | d9ee44d5b0a448be0335452b6a1026380377ff7a /docs/0_Installation.md | |
parent | cef21bdaf75d5cfb220e47b355eda3e1304c2803 (diff) |
Update documentation
This adds some instructions to build test widget using SDK
and basic instruction on how to test natively on your host
as well as on a target board.
Change-Id: I077fda253336883bec3cd0101e61467565d679ff
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'docs/0_Installation.md')
-rw-r--r-- | docs/0_Installation.md | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/docs/0_Installation.md b/docs/0_Installation.md index e81c718..f02fa88 100644 --- a/docs/0_Installation.md +++ b/docs/0_Installation.md @@ -34,4 +34,32 @@ cd afb-test mkdir build cd build cmake .. && make -```
\ No newline at end of file +``` + +## Test natively on your host + +If you want to use the **afb-test** binding natively on your host, you have to +install it. Then *pkg-config* tool can find the **afb-test.pc** and you can +use **afm-test** launcher: + +```bash +sudo make install +# Eventually set PKG_CONFIG_PATH environment variable if not installed in the +# system directory +export PKG_CONFIG_PATH=<path-to-pkgconfig-dir>:${PKG_CONFIG_PATH} +# The same for the PATH environment variable where afm-test has been installed +export PATH=<path-to-afm-test-dir>:${PATH} +``` + +Then you can test other binding using the **afm-test** launcher. Example here, +with another binding project using **app-templates** submodule or the +**cmake-apps-module** CMake module: + +> **Note** CMake module is the new way to use **app-templates** + +```bash +cd build +cmake .. +make +afm-test package package-test +``` |