vocabulary: moving from 'plugin' to 'binding'
[src/app-framework-binder.git] / bindings / intrinsics / CMakeLists.txt
1
2 INCLUDE_DIRECTORIES(${include_dirs})
3
4 ##################################################
5 # DBus Binding
6 ##################################################
7 ADD_LIBRARY(afb-dbus-binding MODULE afb-dbus-binding.c)
8 SET_TARGET_PROPERTIES(afb-dbus-binding PROPERTIES
9         PREFIX ""
10         LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map"
11 )
12 TARGET_LINK_LIBRARIES(afb-dbus-binding ${link_libraries})
13 INSTALL(TARGETS afb-dbus-binding
14         LIBRARY DESTINATION ${binding_install_dir})
15