diff options
author | Mihael Koep <koep@schneide.com> | 2015-08-06 12:44:54 +0200 |
---|---|---|
committer | Mihael Koep <koep@schneide.com> | 2015-08-06 13:01:11 +0200 |
commit | 89ced9478f200facde423423df8c1718752f8a6c (patch) | |
tree | 61d9ea2b56590a884b063a363e2d907ffe9ac3b2 /plugins/dexela/CMakeLists.txt | |
parent | f1cb055bdd2cd18ecd09c1f7504c825eb884aaf0 (diff) | |
download | uca-89ced9478f200facde423423df8c1718752f8a6c.tar.gz uca-89ced9478f200facde423423df8c1718752f8a6c.tar.bz2 uca-89ced9478f200facde423423df8c1718752f8a6c.tar.xz uca-89ced9478f200facde423423df8c1718752f8a6c.zip |
Remove ANKA plugins and change versioning scheme for bundled plugins
ANKA plugins are developed and distributed separately like other plugins
depending on vendor SDKs.
The bundled plugins use libuca version as their version and depend on it directly.
This ensures that they always match the libuca version and makes versioning more
transparent for the end users.
Conflicts:
plugins/mock/CMakeLists.txt
Diffstat (limited to 'plugins/dexela/CMakeLists.txt')
-rw-r--r-- | plugins/dexela/CMakeLists.txt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/dexela/CMakeLists.txt b/plugins/dexela/CMakeLists.txt deleted file mode 100644 index d04c2e6..0000000 --- a/plugins/dexela/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -cmake_minimum_required(VERSION 2.6) -project(ucadexela C) -set(VERSION "1.4.0") - -find_package(DEXELA) - -if (DEXELA_FOUND) - set(UCA_CAMERA_NAME "dexela") - set(PLUGIN_REVISION "1") - set(PLUGIN_VERSION ${VERSION}) - set(PLUGIN_SUMMARY "Dexela plugin for libuca") - set(PLUGIN_CHANGELOG "${CMAKE_CURRENT_SOURCE_DIR}/changelog.txt") - set(PLUGIN_DESCRIPTION "Plugin for the Dexela 1207 detector.") - set(PLUGIN_REQUIRES "libuca >= 2.0.0, libdexela >= 1.2.0") - set(PLUGIN_VENDOR "ANKA Computing Group") - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../package-plugin.sh.in - ${CMAKE_CURRENT_BINARY_DIR}/../../package-plugin-${UCA_CAMERA_NAME}.sh) - - include_directories(${DEXELA_INCLUDE_DIRS} - ${UCA_CONFIGDIR}) - - add_library(ucadexela SHARED uca-dexela-camera.c software-roi.c) - - target_link_libraries(ucadexela ${UCA_DEPS} ${DEXELA_LIBRARIES}) - - install(TARGETS ucadexela - LIBRARY DESTINATION ${UCA_PLUGINDIR} - COMPONENT ${UCA_CAMERA_NAME}) -endif() |