summaryrefslogtreecommitdiffstats
path: root/cmake/FindPylon.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindPylon.cmake')
-rw-r--r--cmake/FindPylon.cmake37
1 files changed, 0 insertions, 37 deletions
diff --git a/cmake/FindPylon.cmake b/cmake/FindPylon.cmake
deleted file mode 100644
index e096bb4..0000000
--- a/cmake/FindPylon.cmake
+++ /dev/null
@@ -1,37 +0,0 @@
-
-# Try to find libpylon.so
-#
-# Defines
-#
-# PYLON_FOUND - system has libpylon
-# PYLON_INCLUDE_DIR - libpylon include directory
-# PYLON_LIB - pylon library
-
-# check for environment variable PYLON_ROOT
-find_package(YAT)
-find_package(PkgConfig)
-find_package(PackageHandleStandardArgs)
-
-if (NOT "$ENV{PYLON_ROOT}" STREQUAL "")
- find_library(YAT_LIB yat ${YAT_LIBRARY_DIRS})
-
- pkg_check_modules(LIBPYLONCAM pyloncam>=0.1)
-
- if (DEFINED LIBPYLONCAM_OTHER_PREFIX)
- string(REPLACE ${LIBPYLONCAM_PREFIX} ${LIBPYLONCAM_OTHER_PREFIX}
- LIBPYLONCAM_INCLUDEDIR ${LIBPYLONCAM_INCLUDEDIR})
- string(REPLACE ${LIBPYLONCAM_PREFIX} ${LIBPYLONCAM_OTHER_PREFIX}
- LIBPYLONCAM_LIBRARIES ${LIBPYLONCAM_LIBRARIES})
- string(REPLACE ${LIBPYLONCAM_PREFIX} ${LIBPYLONCAM_OTHER_PREFIX}
- LIBPYLONCAM_LIBDIR ${LIBPYLONCAM_LIBDIR})
- set(LIBPYLONCAM_LIBDIR ${LIBPYLONCAM_LIBDIR} PARENT_SCOPE)
- endif()
-
- find_package_handle_standard_args(PYLON DEFAULT_MSG LIBPYLONCAM_INCLUDEDIR LIBPYLONCAM_LIBRARIES)
-
- mark_as_advanced(
- LIBPYLONCAM_INCLUDEDIR
- LIBPYLONCAM_LIBRARIES
- LIBPYLONCAM_LIBDIR)
-endif()
-message("-- Pylon libraries found: ${PYLON_FOUND}")