mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-05 01:26:24 +00:00
90 lines
2.3 KiB
CMake
90 lines
2.3 KiB
CMake
# - Try to find GFlags
|
|
#
|
|
# The following variables are optionally searched for defaults
|
|
# GFlags_ROOT_DIR: Base directory where all GFlags components are found
|
|
#
|
|
# The following are set after configuration is done:
|
|
# GFlags_FOUND
|
|
# GFlags_INCLUDE_DIRS
|
|
# GFlags_LIBS
|
|
# GFlags_LIBRARY_DIRS
|
|
|
|
# - Try to find GFlags
|
|
#
|
|
#
|
|
# The following are set after configuration is done:
|
|
# GFlags_FOUND
|
|
# GFlags_INCLUDE_DIRS
|
|
# GFlags_LIBS
|
|
# GFlags_LIBRARY_DIRS
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
if(APPLE)
|
|
FIND_PATH(GFlags_ROOT_DIR
|
|
libgflags.dylib
|
|
PATHS
|
|
/opt/local/lib
|
|
/usr/local/lib
|
|
)
|
|
else(APPLE)
|
|
FIND_PATH(GFlags_ROOT_DIR
|
|
libgflags.so
|
|
HINTS
|
|
/usr/local/lib
|
|
/usr/lib/x86_64-linux-gnu
|
|
/usr/lib/i386-linux-gnu
|
|
/usr/lib/arm-linux-gnueabihf
|
|
/usr/lib/arm-linux-gnueabi
|
|
/usr/lib/aarch64-linux-gnu
|
|
/usr/lib/mipsel-linux-gnu
|
|
/usr/lib/mips-linux-gnu
|
|
/usr/lib/mips64el-linux-gnuabi64
|
|
/usr/lib/powerpc-linux-gnu
|
|
/usr/lib/powerpc64-linux-gnu
|
|
/usr/lib/powerpc64le-linux-gnu
|
|
/usr/lib/powerpc-linux-gnuspe
|
|
/usr/lib/hppa-linux-gnu
|
|
/usr/lib/s390x-linux-gnu
|
|
/usr/lib/i386-gnu
|
|
/usr/lib/hppa-linux-gnu
|
|
/usr/lib/x86_64-kfreebsd-gnu
|
|
/usr/lib/i386-kfreebsd-gnu
|
|
/usr/lib/m68k-linux-gnu
|
|
/usr/lib/sh4-linux-gnu
|
|
/usr/lib/sparc64-linux-gnu
|
|
/usr/lib/x86_64-linux-gnux32
|
|
/usr/lib/alpha-linux-gnu
|
|
/usr/lib64
|
|
/usr/lib
|
|
)
|
|
endif(APPLE)
|
|
|
|
IF(GFlags_ROOT_DIR)
|
|
# We are testing only a couple of files in the include directories
|
|
FIND_PATH(GFlags_INCLUDE_DIRS
|
|
gflags/gflags.h
|
|
HINTS
|
|
/opt/local/include
|
|
/usr/local/include
|
|
/usr/include
|
|
${GFlags_ROOT_DIR}/src
|
|
)
|
|
|
|
# Find the libraries
|
|
SET(GFlags_LIBRARY_DIRS ${GFlags_ROOT_DIR})
|
|
|
|
FIND_LIBRARY(GFlags_lib gflags ${GFlags_LIBRARY_DIRS})
|
|
|
|
# set up include and link directory
|
|
include_directories(${GFlags_INCLUDE_DIRS})
|
|
link_directories(${GFlags_LIBRARY_DIRS})
|
|
message(STATUS "gflags library found at ${GFlags_lib}")
|
|
SET(GFlags_LIBS ${GFlags_lib})
|
|
SET(GFlags_FOUND true)
|
|
MARK_AS_ADVANCED(GFlags_INCLUDE_DIRS)
|
|
ELSE(GFlags_ROOT_DIR)
|
|
MESSAGE(STATUS "Cannot find gflags")
|
|
SET(GFlags_FOUND false)
|
|
ENDIF(GFlags_ROOT_DIR)
|
|
|