diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2014-04-09 15:19:48 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2014-04-09 15:19:48 +0200 |
commit | bb8d8f137197857e0e497d5c0b446c1b5f1b7a3e (patch) | |
tree | e02cd3ec095f606f85eb0fff71ab5b1eed19f50e /plugins/pylon/CMakeLists.txt | |
parent | 6ea92130f1c791007b417e41b39e21f07d644a3c (diff) | |
parent | 10c2e35112d43c06fc715014b33094761f01c992 (diff) | |
download | libuca-bb8d8f137197857e0e497d5c0b446c1b5f1b7a3e.tar.gz libuca-bb8d8f137197857e0e497d5c0b446c1b5f1b7a3e.tar.bz2 libuca-bb8d8f137197857e0e497d5c0b446c1b5f1b7a3e.tar.xz libuca-bb8d8f137197857e0e497d5c0b446c1b5f1b7a3e.zip |
Merge pull request #35 from miq/anka_plugin_updates
Anka plugin updates
Diffstat (limited to 'plugins/pylon/CMakeLists.txt')
-rw-r--r-- | plugins/pylon/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/pylon/CMakeLists.txt b/plugins/pylon/CMakeLists.txt index 7e573f1..5864b84 100644 --- a/plugins/pylon/CMakeLists.txt +++ b/plugins/pylon/CMakeLists.txt @@ -1,17 +1,17 @@ cmake_minimum_required(VERSION 2.6) project(ucapylon C) -set(VERSION "1.0.0") +set(VERSION "1.1.1") find_package(Pylon) if (PYLON_FOUND) set(UCA_CAMERA_NAME "pylon") + set(PLUGIN_REVISION "1") set(PLUGIN_VERSION ${VERSION}) - set(PLUGIN_REVISION "2") set(PLUGIN_SUMMARY "Pylon plugin for libuca") set(PLUGIN_CHANGELOG "${CMAKE_CURRENT_SOURCE_DIR}/changelog.txt") set(PLUGIN_DESCRIPTION "Plugin for the Basler GigE CCD Camera.") - set(PLUGIN_REQUIRES "libuca >= 1.3.0, libpyloncam >= 0.2.3") + set(PLUGIN_REQUIRES "libuca >= 1.3.0, libpyloncam >= 0.3.0") set(PLUGIN_VENDOR "ANKA Computing Group") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../package-plugin.sh.in @@ -25,10 +25,10 @@ if (PYLON_FOUND) create_enums(uca-pylon-enums ${CMAKE_CURRENT_SOURCE_DIR}/../../src/uca-enums uca-pylon-camera.h) - + add_library(ucapylon SHARED - uca-pylon-enums.c - uca-pylon-camera.c) + uca-pylon-camera.c + uca-pylon-enums.c) target_link_libraries(ucapylon ${UCA_DEPS} |