summaryrefslogtreecommitdiffstats
path: root/cmake_modules/FindPLAYERONE.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake_modules/FindPLAYERONE.cmake')
-rw-r--r--cmake_modules/FindPLAYERONE.cmake56
1 files changed, 56 insertions, 0 deletions
diff --git a/cmake_modules/FindPLAYERONE.cmake b/cmake_modules/FindPLAYERONE.cmake
new file mode 100644
index 0000000..9171a51
--- /dev/null
+++ b/cmake_modules/FindPLAYERONE.cmake
@@ -0,0 +1,56 @@
+# - Try to find PlayerOne Library
+# Once done this will define
+#
+# PLAYERONE_FOUND - system has PLAYERONE
+# PLAYERONE_INCLUDE_DIR - the PLAYERONE include directory
+# PLAYERONE_LIBRARIES - Link these to use ASI
+
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+if (PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)
+
+ # in cache already
+ set(PLAYERONE_FOUND TRUE)
+ message(STATUS "Found libplayerone: ${PLAYERONE_LIBRARIES}")
+
+else (PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)
+
+ find_path(PLAYERONE_INCLUDE_DIR PlayerOneCamera.h
+ PATH_SUFFIXES libplayerone
+ ${_obIncDir}
+ ${GNUWIN32_DIR}/include
+ )
+
+ find_library(PLAYERONECAM_LIBRARIES NAMES PlayerOneCamera
+ PATHS
+ ${_obLinkDir}
+ ${GNUWIN32_DIR}/lib
+ )
+
+
+ if (PLAYERONECAM_LIBRARIES)
+ set(PLAYERONE_LIBRARIES ${PLAYERONECAM_LIBRARIES})
+ endif (PLAYERONECAM_LIBRARIES)
+
+
+ if(PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)
+ set(PLAYERONE_FOUND TRUE)
+ else (PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)
+ set(PLAYERONE_FOUND FALSE)
+ endif(PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)
+
+
+ if (PLAYERONE_FOUND)
+ if (NOT PLAYERONE_FIND_QUIETLY)
+ message(STATUS "Found PLAYERONE: ${PLAYERONE_LIBRARIES}")
+ endif (NOT PLAYERONE_FIND_QUIETLY)
+ else (PLAYERONE_FOUND)
+ if (PLAYERONE_FIND_REQUIRED)
+ message(FATAL_ERROR "PLAYERONE not found. Please install libPlayerOneCamera.3 http://www.indilib.org")
+ endif (PLAYERONE_FIND_REQUIRED)
+ endif (PLAYERONE_FOUND)
+
+ mark_as_advanced(PLAYERONE_INCLUDE_DIR PLAYERONE_LIBRARIES)
+
+endif (PLAYERONE_INCLUDE_DIR AND PLAYERONE_LIBRARIES)