diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-08-09 12:36:28 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-08-09 12:36:28 +0200 |
commit | 859a6a6802e1891628af988a83a3e24b5b75c007 (patch) | |
tree | 324ea55df2fa8ada592bee6e3e39e29cbfef685e /cmake/FindPylon.cmake | |
parent | 16081d9f9cc6edf22c99ce890d1436cc8313bd20 (diff) | |
download | libuca-859a6a6802e1891628af988a83a3e24b5b75c007.tar.gz libuca-859a6a6802e1891628af988a83a3e24b5b75c007.tar.bz2 libuca-859a6a6802e1891628af988a83a3e24b5b75c007.tar.xz libuca-859a6a6802e1891628af988a83a3e24b5b75c007.zip |
Drop REQUIRED flag from Basler dependencies
If they are required, they cannot be built on machines without that dependency.
Diffstat (limited to 'cmake/FindPylon.cmake')
-rw-r--r-- | cmake/FindPylon.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindPylon.cmake b/cmake/FindPylon.cmake index 9820201..01cee02 100644 --- a/cmake/FindPylon.cmake +++ b/cmake/FindPylon.cmake @@ -17,7 +17,7 @@ if (NOT "$ENV{PYLON_ROOT}" STREQUAL "") find_library(YAT_LIB yat ${YAT_LIBRARY_DIRS}) - pkg_check_modules(LIBPYLONCAM pyloncam>=0.1 REQUIRED) + pkg_check_modules(LIBPYLONCAM pyloncam>=0.1) if (DEFINED LIBPYLONCAM_OTHER_PREFIX) string(REPLACE ${LIBPYLONCAM_PREFIX} ${LIBPYLONCAM_OTHER_PREFIX} LIBPYLONCAM_INCLUDEDIR ${LIBPYLONCAM_INCLUDEDIR}) |