diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-04 18:18:24 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-05 16:22:47 +0200 |
commit | bf964e8ad085cd051d9a28bcd74aafeeb08c9593 (patch) | |
tree | 023df59e460e7102797648e87ec41edca360218c /plugins/CMakeLists.txt | |
parent | 523113d80d1304346f685f530089b14a7df29d07 (diff) |
Reintoduce the old builtin plugin
We use only one function of two from the plugin which could
be called from the LUA script to be able to set a signal
value from a LUA callback.
Change-Id: Ic7a0fcd3d8c4c2370828c1d09fff9ed88a0dc15b
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'plugins/CMakeLists.txt')
-rw-r--r-- | plugins/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index fc24fbd..c8ec93c 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -16,6 +16,28 @@ # 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 |