~sil2100/location-service/gps-arm64

« back to all changes in this revision

Viewing changes to cmake/FindGLog.cmake

  • Committer: Thomas Voß
  • Date: 2013-05-28 14:20:45 UTC
  • Revision ID: thomas.voss@canonical.com-20130528142045-kq5umqdmm4o53vwk
Initial push.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if (GLog_INCLUDE_DIR)
 
2
  # Already in cache, be silent
 
3
  set(GLog_FIND_QUIETLY TRUE)
 
4
endif ()
 
5
 
 
6
find_path(GLog_INCLUDE_DIR glog/logging.h)
 
7
 
 
8
find_library(GLog_LIBRARY libglog.so
 
9
             HINTS /usr/lib/arm-linux-gnueabihf/)
 
10
 
 
11
include(FindPackageHandleStandardArgs)
 
12
find_package_handle_standard_args(GLog DEFAULT_MSG GLog_LIBRARY GLog_INCLUDE_DIR)
 
13
 
 
14
mark_as_advanced(GLog_LIBRARY GLog_INCLUDE_DIR)