diff options
author | Clément Bénier <clement.benier@iot.bzh> | 2018-09-12 14:53:40 +0200 |
---|---|---|
committer | Clément Bénier <clement.benier@iot.bzh> | 2018-09-12 14:57:46 +0200 |
commit | 77973a72cb095f23a1e9bc776582781e8316e265 (patch) | |
tree | 89ec80861c73fc79c9c107a924980a1f00b3f7ce /test/afb-test | |
parent | 217bb01edca6fa9e5fc920cf596934727ffb92c3 (diff) |
txc-binding: in conf files, rename api to txc
fix multiples errors, rename txc into txc-binding
Change-Id: I9cd32cf157e407d98293bc869ed08cc93518a555
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'test/afb-test')
-rw-r--r-- | test/afb-test/etc/aft-signal-composer_config.json | 4 | ||||
-rw-r--r-- | test/afb-test/fixtures/txc-binding/CMakeLists.txt | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/test/afb-test/etc/aft-signal-composer_config.json b/test/afb-test/etc/aft-signal-composer_config.json index 4ec2285..cab8f24 100644 --- a/test/afb-test/etc/aft-signal-composer_config.json +++ b/test/afb-test/etc/aft-signal-composer_config.json @@ -22,7 +22,7 @@ "mapis": [{ "uid": "txc-binding", "info": "Faked txc-binding API", - "libs": "txc-binding.c", + "libs": "txc-binding.ctlso", "verbs": [ { "uid": "subscribe", @@ -46,4 +46,4 @@ } ] }] -}
\ No newline at end of file +} diff --git a/test/afb-test/fixtures/txc-binding/CMakeLists.txt b/test/afb-test/fixtures/txc-binding/CMakeLists.txt index 76a4923..fbc65f3 100644 --- a/test/afb-test/fixtures/txc-binding/CMakeLists.txt +++ b/test/afb-test/fixtures/txc-binding/CMakeLists.txt @@ -28,11 +28,10 @@ PROJECT_TARGET_ADD(txc-binding) SUFFIX ".ctlso" PREFIX "" LABELS "TEST-PLUGIN" - LINK_FLAGS ${BINDINGS_LINK_FLAG} OUTPUT_NAME ${TARGET_NAME} ) # Library dependencies (include updates automatically) TARGET_LINK_LIBRARIES(${TARGET_NAME} ctl-utilities - ${link_libraries})
\ No newline at end of file + ${link_libraries}) |