24ffd91bf391a12340c8b61d3679a05121dd0edf
[src/app-framework-binder.git] / plugins / samples / CMakeLists.txt
1 INCLUDE_DIRECTORIES(${include_dirs})
2
3 ADD_LIBRARY(helloWorld-api MODULE HelloWorld.c)
4 SET_TARGET_PROPERTIES(helloWorld-api PROPERTIES PREFIX "")
5 TARGET_LINK_LIBRARIES(helloWorld-api ${link_libraries})
6 INSTALL(TARGETS helloWorld-api
7         LIBRARY DESTINATION ${plugin_install_dir})
8
9 #ADD_LIBRARY(samplePost-api MODULE SamplePost.c)
10 #SET_TARGET_PROPERTIES(samplePost-api PROPERTIES PREFIX "")
11 #TARGET_LINK_LIBRARIES(samplePost-api ${link_libraries})
12 #INSTALL(TARGETS samplePost-api
13 #        LIBRARY DESTINATION ${plugin_install_dir})
14
15 ADD_LIBRARY(clientCtx-api MODULE ClientCtx.c)
16 SET_TARGET_PROPERTIES(clientCtx-api PROPERTIES PREFIX "")
17 TARGET_LINK_LIBRARIES(clientCtx-api ${link_libraries})
18 INSTALL(TARGETS clientCtx-api
19         LIBRARY DESTINATION ${plugin_install_dir})