Switch to a plugin model
[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 INSTALL(TARGETS helloWorld-api
6         LIBRARY DESTINATION ${plugin_install_dir})
7
8 ADD_LIBRARY(samplePost-api MODULE SamplePost.c)
9 SET_TARGET_PROPERTIES(samplePost-api PROPERTIES PREFIX "")
10 INSTALL(TARGETS samplePost-api
11         LIBRARY DESTINATION ${plugin_install_dir})