summaryrefslogtreecommitdiffstats
path: root/cmake_modules/FindAPOGEE.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake_modules/FindAPOGEE.cmake')
-rw-r--r--cmake_modules/FindAPOGEE.cmake53
1 files changed, 53 insertions, 0 deletions
diff --git a/cmake_modules/FindAPOGEE.cmake b/cmake_modules/FindAPOGEE.cmake
new file mode 100644
index 0000000..081fb7e
--- /dev/null
+++ b/cmake_modules/FindAPOGEE.cmake
@@ -0,0 +1,53 @@
+# - Try to find Apogee Instruments Library
+# Once done this will define
+#
+# APOGEE_FOUND - system has APOGEE
+# APOGEE_INCLUDE_DIR - the APOGEE include directory
+# APOGEE_LIBRARY - Link these to use APOGEE
+
+# Copyright (c) 2008, Jasem Mutlaq <mutlaqja@ikarustech.com>
+# Based on FindLibfacile by Carsten Niehaus, <cniehaus@gmx.de>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+if (APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)
+
+ # in cache already
+ set(APOGEE_FOUND TRUE)
+ message(STATUS "Found libapogee: ${APOGEE_LIBRARY}")
+
+else (APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)
+
+ find_path(APOGEE_INCLUDE_DIR ApogeeCam.h
+ PATH_SUFFIXES libapogee
+ ${_obIncDir}
+ ${GNUWIN32_DIR}/include
+ )
+
+ # Find Apogee Library
+ find_library(APOGEE_LIBRARY NAMES apogee
+ PATHS
+ ${_obLinkDir}
+ ${GNUWIN32_DIR}/lib
+ )
+
+ if(APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)
+ set(APOGEE_FOUND TRUE)
+ else (APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)
+ set(APOGEE_FOUND FALSE)
+ endif(APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)
+
+ if (APOGEE_FOUND)
+ if (NOT APOGEE_FIND_QUIETLY)
+ message(STATUS "Found APOGEE: ${APOGEE_LIBRARY}")
+ endif (NOT APOGEE_FIND_QUIETLY)
+ else (APOGEE_FOUND)
+ if (APOGEE_FIND_REQUIRED)
+ message(FATAL_ERROR "libapogee not found. Cannot compile Apogee CCD Driver. Please install libapogee and try again. http://www.indilib.org")
+ endif (APOGEE_FIND_REQUIRED)
+ endif (APOGEE_FOUND)
+
+ mark_as_advanced(APOGEE_INCLUDE_DIR APOGEE_LIBRARY)
+
+endif (APOGEE_INCLUDE_DIR AND APOGEE_LIBRARY)