From f5c013e32d1c8ee931bec45cee7bc04c5d536d50 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Sun, 29 May 2016 22:15:41 +0200 Subject: Adds documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also remove a old cmakefile Change-Id: I2748514934790043a15bb48d1d06bd82967d4494 Signed-off-by: José Bollo --- plugins/samples/CMakeLists.txt2 | 47 ----------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 plugins/samples/CMakeLists.txt2 (limited to 'plugins/samples') 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}) -- cgit 1.2.3-korg