diff options
author | jobol <jose.bollo@iot.bzh> | 2016-06-06 11:32:19 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-06-08 11:48:35 +0200 |
commit | cee4240979b3b9c4ebb877631e66157918598c3d (patch) | |
tree | 3072776b681121e48fc73c87548fb77f39f559c1 /plugins/intrinsics/CMakeLists.txt | |
parent | 7c8b8a78f9029d8568a89e5f2a27c88a75b1daa2 (diff) |
DBus binding: first draft
Implements the verb 'rawcall'
Change-Id: Id83b065f778f2fd61ecf6e4e13bff3cc17d8ef18
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins/intrinsics/CMakeLists.txt')
-rw-r--r-- | plugins/intrinsics/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/intrinsics/CMakeLists.txt b/plugins/intrinsics/CMakeLists.txt new file mode 100644 index 00000000..b9bd638a --- /dev/null +++ b/plugins/intrinsics/CMakeLists.txt @@ -0,0 +1,15 @@ + +INCLUDE_DIRECTORIES(${include_dirs}) + +################################################## +# DBus Binding +################################################## +ADD_LIBRARY(afb-dbus-binding MODULE afb-dbus-binding.c) +SET_TARGET_PROPERTIES(afb-dbus-binding PROPERTIES + PREFIX "" + LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" +) +TARGET_LINK_LIBRARIES(afb-dbus-binding ${link_libraries}) +INSTALL(TARGETS afb-dbus-binding + LIBRARY DESTINATION ${plugin_install_dir}) + |