1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-05 15:00:33 +00:00

Fixing configuration if glog has been installed via libgoogle-glog-dev

package
This commit is contained in:
Carles Fernandez 2014-11-19 19:39:03 +01:00
parent 3c89c1c5f6
commit 7a90027989

View File

@ -472,6 +472,9 @@ endif(NOT GFlags_FOUND)
################################################################################ ################################################################################
if(NOT ${ENABLE_OWN_GLOG}) if(NOT ${ENABLE_OWN_GLOG})
find_package(GLOG) find_package(GLOG)
if(NOT GLOG_INCLUDE_DIRS)
set(GLOG_FOUND)
endif(NOT GLOG_INCLUDE_DIRS)
endif(NOT ${ENABLE_OWN_GLOG}) endif(NOT ${ENABLE_OWN_GLOG})
set(glog_RELEASE 0.3.3) set(glog_RELEASE 0.3.3)
if (NOT GLOG_FOUND OR ${LOCAL_GFLAGS}) if (NOT GLOG_FOUND OR ${LOCAL_GFLAGS})