diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-03 20:35:21 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-05 16:22:47 +0200 |
commit | 1c93ff74e3e7ec828a21e9028b99cd46752ebce8 (patch) | |
tree | 06b9ed43e55f70e354673d2e451f22e537e17b99 /plugins | |
parent | e72c4b089a2e6c9f8529f9a4031913b7ca11c8a3 (diff) |
Rework loading sources and signals.
Some function that are now included in the controller submodule
do not need to be in the composer as well. Also initialize
sources and signals in the same way .
JSON configuration needs to be updated to fit this changes
Change-Id: I2043791e7ee80f8350f33ed15bdf9980c0773b82
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CMakeLists.txt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 0d437d5..fc24fbd 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -16,28 +16,6 @@ # limitations under the License. ########################################################################### -PROJECT_TARGET_ADD(builtin) - - # Define targets - ADD_LIBRARY(${TARGET_NAME} MODULE ${TARGET_NAME}.cpp) - - # Alsa Plugin properties - SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES - LABELS "PLUGIN" - PREFIX "" - SUFFIX ".ctlso" - OUTPUT_NAME ${TARGET_NAME} - ) - - # Library dependencies (include updates automatically) - TARGET_LINK_LIBRARIES(${TARGET_NAME} - ${link_libraries} - ) - - target_include_directories(${TARGET_NAME} - PRIVATE "../ctl-utilities/ctl-lib" - PRIVATE "../signal-composer-binding") - PROJECT_TARGET_ADD(low-can) # Define targets |