summaryrefslogtreecommitdiffstats
path: root/plugins/samples/CMakeLists.txt
blob: 24ffd91bf391a12340c8b61d3679a05121dd0edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
INCLUDE_DIRECTORIES(${include_dirs})

ADD_LIBRARY(helloWorld-api MODULE HelloWorld.c)
SET_TARGET_PROPERTIES(helloWorld-api PROPERTIES PREFIX "")
TARGET_LINK_LIBRARIES(helloWorld-api ${link_libraries})
INSTALL(TARGETS helloWorld-api
        LIBRARY DESTINATION ${plugin_install_dir})

#ADD_LIBRARY(samplePost-api MODULE SamplePost.c)
#SET_TARGET_PROPERTIES(samplePost-api PROPERTIES PREFIX "")
#TARGET_LINK_LIBRARIES(samplePost-api ${link_libraries})
#INSTALL(TARGETS samplePost-api
#        LIBRARY DESTINATION ${plugin_install_dir})

ADD_LIBRARY(clientCtx-api MODULE ClientCtx.c)
SET_TARGET_PROPERTIES(clientCtx-api PROPERTIES PREFIX "")
TARGET_LINK_LIBRARIES(clientCtx-api ${link_libraries})
INSTALL(TARGETS clientCtx-api
        LIBRARY DESTINATION ${plugin_install_dir})