diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-03-29 17:44:48 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-04-02 09:07:20 +0200 |
commit | 0083a4b55b009b08d9c50c699878dcc7b8a0f0f5 (patch) | |
tree | d8bc4a4d47ee90a7c4e7a3dddf2967433fb28b6a /plugins | |
parent | fe311f49703e9691fa7d515ed84a70b996f7f3e8 (diff) |
Git submodule migration to separated librariessandbox/claneys/submigration
- Replace controller binder functions definition with the binder ones.
and remove the last used submodules to use the separated libraries.
Bug-AGL: SPEC-2139
Change-Id: I06e5e7a03a918bf0ce139636104e1a73d2442a09
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CMakeLists.txt | 18 | ||||
-rw-r--r-- | plugins/builtin.cpp | 1 |
2 files changed, 1 insertions, 18 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index c8ec93c..7fe36ff 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -29,13 +29,7 @@ PROJECT_TARGET_ADD(builtin) 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) @@ -51,13 +45,7 @@ PROJECT_TARGET_ADD(low-can) 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(gps) @@ -73,11 +61,5 @@ PROJECT_TARGET_ADD(gps) 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") diff --git a/plugins/builtin.cpp b/plugins/builtin.cpp index 28bcba7..45604fc 100644 --- a/plugins/builtin.cpp +++ b/plugins/builtin.cpp @@ -15,6 +15,7 @@ * limitations under the License. * */ +#define CTL_PLUGIN_MAGIC 1286576532 #include <afb/afb-binding.h> #include <systemd/sd-event.h> |