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/mock/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/mock/CMakeLists.txt')
-rw-r--r-- | plugins/mock/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mock/CMakeLists.txt b/plugins/mock/CMakeLists.txt index eafd180..5cb1067 100644 --- a/plugins/mock/CMakeLists.txt +++ b/plugins/mock/CMakeLists.txt @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.6) project(ucamock C) set(UCA_CAMERA_NAME "mock") -set(PLUGIN_VERSION "1.0.2") -set(PLUGIN_REVISION "1") -set(PLUGIN_REQUIRES "libuca >= 2.1.0") +set(PLUGIN_VERSION ${UCA_VERSION_STRING}) +set(PLUGIN_REVISION ${CPACK_PACKAGE_RELEASE}) +set(PLUGIN_REQUIRES "libuca = ${UCA_VERSION_STRING}") set(PLUGIN_SUMMARY "Mock plugin for libuca") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../package-plugin.sh.in |