diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-05-29 22:15:41 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-05-29 23:53:55 +0200 |
commit | f5c013e32d1c8ee931bec45cee7bc04c5d536d50 (patch) | |
tree | e2f33d0e9e6a7873154cfe4a20b6d9b0c413caaf /plugins/samples | |
parent | a4487d8a46d3e4400bf73ce817fa1a34cde31a6f (diff) |
Adds documentation
Also remove a old cmakefile
Change-Id: I2748514934790043a15bb48d1d06bd82967d4494
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins/samples')
-rw-r--r-- | plugins/samples/CMakeLists.txt2 | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/samples/CMakeLists.txt2 b/plugins/samples/CMakeLists.txt2 deleted file mode 100644 index 357f16a6..00000000 --- a/plugins/samples/CMakeLists.txt2 +++ /dev/null @@ -1,47 +0,0 @@ - -INCLUDE_DIRECTORIES(${include_dirs}) - -ADD_LIBRARY(helloWorld-api MODULE HelloWorld.c) -SET_TARGET_PROPERTIES(helloWorld-api PROPERTIES - PREFIX "" - LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" -) -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 "" - LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" -) -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 "" - LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" -) -TARGET_LINK_LIBRARIES(clientCtx-api ${link_libraries}) -INSTALL(TARGETS clientCtx-api - LIBRARY DESTINATION ${plugin_install_dir}) - -ADD_LIBRARY(ClientLogin-api MODULE ClientLogin.c) -SET_TARGET_PROPERTIES(ClientLogin-api PROPERTIES - PREFIX "" - LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" -) -TARGET_LINK_LIBRARIES(ClientLogin-api ${link_libraries}) -INSTALL(TARGETS ClientLogin-api - LIBRARY DESTINATION ${plugin_install_dir}) - -ADD_LIBRARY(tic-tac-toe MODULE tic-tac-toe.c) -SET_TARGET_PROPERTIES(tic-tac-toe PROPERTIES - PREFIX "" - LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map" -) -TARGET_LINK_LIBRARIES(tic-tac-toe ${link_libraries}) -INSTALL(TARGETS tic-tac-toe - LIBRARY DESTINATION ${plugin_install_dir}) |