Lines Matching refs:glog
32 # FindGlog.cmake - Find Google glog logging library.
36 # GLOG_FOUND: TRUE iff glog is found.
37 # GLOG_INCLUDE_DIRS: Include directories for glog.
38 # GLOG_LIBRARIES: Libraries required to link glog.
43 # search for glog includes, e.g: /timbuktu/include.
45 # search for glog libraries, e.g: /timbuktu/lib.
58 # GLOG_INCLUDE_DIR: Include directory for glog, not including the
60 # GLOG_LIBRARY: glog library, not including the libraries of any
63 # Called if we failed to find glog or any of it's required dependencies,
70 # Make results of search visible in the CMake GUI if glog has not
77 MESSAGE(STATUS "Failed to find glog - " ${REASON_MSG} ${ARGN})
79 MESSAGE(FATAL_ERROR "Failed to find glog - " ${REASON_MSG} ${ARGN})
83 MESSAGE("-- Failed to find glog - " ${REASON_MSG} ${ARGN})
90 # TODO: Add standard Windows search locations for glog.
105 NAMES glog/logging.h
111 "Could not find glog include directory, set GLOG_INCLUDE_DIR "
112 "to directory containing glog/logging.h")
116 FIND_LIBRARY(GLOG_LIBRARY NAMES glog
122 "Could not find glog library, set GLOG_LIBRARY "
138 NOT EXISTS ${GLOG_INCLUDE_DIR}/glog/logging.h)
141 " ${GLOG_INCLUDE_DIR} does not contain glog/logging.h header.")
143 NOT EXISTS ${GLOG_INCLUDE_DIR}/glog/logging.h)
144 # TODO: This regex for glog library is pretty primitive, we use lowercase
149 NOT "${LOWERCASE_GLOG_LIBRARY}" MATCHES ".*glog[^/]*")
152 "${GLOG_LIBRARY} does not match glog.")
154 NOT "${LOWERCASE_GLOG_LIBRARY}" MATCHES ".*glog[^/]*")
167 # Only mark internal variables as advanced if we found glog, otherwise