Warning, /education/marble/cmake/modules/Findlibgps.cmake is written in an unsupported language. File is not indexed.

0001 # LIBGPS_FOUND - system has the LIBGPS library
0002 # LIBGPS_INCLUDE_DIR - the LIBGPS include directory
0003 # LIBGPS_LIBRARIES - The libraries needed to use LIBGPS
0004 
0005 if(LIBGPS_INCLUDE_DIR AND LIBGPS_LIBRARIES)
0006   set(LIBGPS_FOUND TRUE)
0007 else(LIBGPS_INCLUDE_DIR AND LIBGPS_LIBRARIES)
0008 
0009   find_path(LIBGPS_INCLUDE_DIR NAMES gps.h)
0010   find_library(LIBGPS_LIBRARIES NAMES gps)
0011 
0012   include(FindPackageHandleStandardArgs)
0013   find_package_handle_standard_args(libgps DEFAULT_MSG LIBGPS_INCLUDE_DIR LIBGPS_LIBRARIES)
0014 
0015   mark_as_advanced(LIBGPS_INCLUDE_DIR LIBGPS_LIBRARIES)
0016 endif(LIBGPS_INCLUDE_DIR AND LIBGPS_LIBRARIES)