From b5c90a21f289bb67c4806a8563d96fc674bba583 Mon Sep 17 00:00:00 2001 From: Volker Kaiser Date: Tue, 24 Apr 2012 08:53:21 +0200 Subject: pylon (basler) camera added --- cmake/FindYAT.cmake | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cmake/FindYAT.cmake (limited to 'cmake/FindYAT.cmake') diff --git a/cmake/FindYAT.cmake b/cmake/FindYAT.cmake new file mode 100644 index 0000000..92da3c8 --- /dev/null +++ b/cmake/FindYAT.cmake @@ -0,0 +1,6 @@ + +find_package(PkgConfig) +pkg_check_modules(YAT yat>=1.7.7 REQUIRED) + +find_library(YAT_LIB yat ${YAT_LIBRARY_DIRS}) + -- cgit v1.2.3 From 859a6a6802e1891628af988a83a3e24b5b75c007 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Thu, 9 Aug 2012 12:36:28 +0200 Subject: Drop REQUIRED flag from Basler dependencies If they are required, they cannot be built on machines without that dependency. --- cmake/FindYAT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake/FindYAT.cmake') diff --git a/cmake/FindYAT.cmake b/cmake/FindYAT.cmake index 92da3c8..1f9a98b 100644 --- a/cmake/FindYAT.cmake +++ b/cmake/FindYAT.cmake @@ -1,6 +1,6 @@ find_package(PkgConfig) -pkg_check_modules(YAT yat>=1.7.7 REQUIRED) +pkg_check_modules(YAT yat>=1.7.7) find_library(YAT_LIB yat ${YAT_LIBRARY_DIRS}) -- cgit v1.2.3