mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +00:00
Merge remote-tracking branch 'cf/next' into common_solver
This commit is contained in:
commit
eedc9a4300
@ -450,6 +450,16 @@ endif()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Lib4cpp - http://log4cpp.sourceforge.net/
|
||||||
|
################################################################################
|
||||||
|
find_package(Log4cpp)
|
||||||
|
if(NOT LOG4CPP_FOUND)
|
||||||
|
message(FATAL_ERROR "*** Lib4cpp is required to build gnss-sdr")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# volk_gnsssdr module - GNSS-SDR's own VOLK library
|
# volk_gnsssdr module - GNSS-SDR's own VOLK library
|
||||||
################################################################################
|
################################################################################
|
||||||
|
78
cmake/Modules/FindLog4cpp.cmake
Normal file
78
cmake/Modules/FindLog4cpp.cmake
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
# - Find Log4cpp
|
||||||
|
# Find the native LOG4CPP includes and library
|
||||||
|
#
|
||||||
|
# LOG4CPP_INCLUDE_DIR - where to find LOG4CPP.h, etc.
|
||||||
|
# LOG4CPP_LIBRARIES - List of libraries when using LOG4CPP.
|
||||||
|
# LOG4CPP_FOUND - True if LOG4CPP found.
|
||||||
|
|
||||||
|
|
||||||
|
if (LOG4CPP_INCLUDE_DIR)
|
||||||
|
# Already in cache, be silent
|
||||||
|
set(LOG4CPP_FIND_QUIETLY TRUE)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
find_path(LOG4CPP_INCLUDE_DIR log4cpp/Category.hh
|
||||||
|
/opt/local/include
|
||||||
|
/usr/local/include
|
||||||
|
/usr/include
|
||||||
|
)
|
||||||
|
|
||||||
|
set(LOG4CPP_NAMES log4cpp)
|
||||||
|
find_library(LOG4CPP_LIBRARY
|
||||||
|
NAMES ${LOG4CPP_NAMES}
|
||||||
|
HINTS $ENV{GNURADIO_RUNTIME_DIR}/lib
|
||||||
|
${PC_LIBDIR}
|
||||||
|
${CMAKE_INSTALL_PREFIX}/lib/
|
||||||
|
PATHS /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
|
||||||
|
/usr/local/lib
|
||||||
|
/opt/local/lib
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if (LOG4CPP_INCLUDE_DIR AND LOG4CPP_LIBRARY)
|
||||||
|
set(LOG4CPP_FOUND TRUE)
|
||||||
|
set(LOG4CPP_LIBRARIES ${LOG4CPP_LIBRARY} CACHE INTERNAL "" FORCE)
|
||||||
|
set(LOG4CPP_INCLUDE_DIRS ${LOG4CPP_INCLUDE_DIR} CACHE INTERNAL "" FORCE)
|
||||||
|
else ()
|
||||||
|
set(LOG4CPP_FOUND FALSE CACHE INTERNAL "" FORCE)
|
||||||
|
set(LOG4CPP_LIBRARY "" CACHE INTERNAL "" FORCE)
|
||||||
|
set(LOG4CPP_LIBRARIES "" CACHE INTERNAL "" FORCE)
|
||||||
|
set(LOG4CPP_INCLUDE_DIR "" CACHE INTERNAL "" FORCE)
|
||||||
|
set(LOG4CPP_INCLUDE_DIRS "" CACHE INTERNAL "" FORCE)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
if (LOG4CPP_FOUND)
|
||||||
|
if (NOT LOG4CPP_FIND_QUIETLY)
|
||||||
|
message(STATUS "Found LOG4CPP: ${LOG4CPP_LIBRARIES}")
|
||||||
|
endif ()
|
||||||
|
else ()
|
||||||
|
if (LOG4CPP_FIND_REQUIRED)
|
||||||
|
message(STATUS "Looked for LOG4CPP libraries named ${LOG4CPPS_NAMES}.")
|
||||||
|
message(FATAL_ERROR "Could NOT find LOG4CPP library")
|
||||||
|
endif ()
|
||||||
|
endif ()
|
@ -33,7 +33,8 @@ file(GLOB INPUT_FILTER_GR_BLOCKS_HEADERS "*.h")
|
|||||||
list(SORT INPUT_FILTER_GR_BLOCKS_HEADERS)
|
list(SORT INPUT_FILTER_GR_BLOCKS_HEADERS)
|
||||||
add_library(input_filter_gr_blocks ${INPUT_FILTER_GR_BLOCKS_SOURCES} ${INPUT_FILTER_GR_BLOCKS_HEADERS})
|
add_library(input_filter_gr_blocks ${INPUT_FILTER_GR_BLOCKS_SOURCES} ${INPUT_FILTER_GR_BLOCKS_HEADERS})
|
||||||
source_group(Headers FILES ${INPUT_FILTER_GR_BLOCKS_HEADERS})
|
source_group(Headers FILES ${INPUT_FILTER_GR_BLOCKS_HEADERS})
|
||||||
target_link_libraries(input_filter_gr_blocks ${GNURADIO_RUNTIME_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES})
|
|
||||||
|
target_link_libraries(input_filter_gr_blocks ${GNURADIO_FILTER_LIBRARIES} ${VOLK_GNSSSDR_LIBRARIES} ${LOG4CPP_LIBRARIES})
|
||||||
|
|
||||||
if(NOT VOLK_GNSSSDR_FOUND)
|
if(NOT VOLK_GNSSSDR_FOUND)
|
||||||
add_dependencies(input_filter_gr_blocks volk_gnsssdr_module)
|
add_dependencies(input_filter_gr_blocks volk_gnsssdr_module)
|
||||||
|
Loading…
Reference in New Issue
Block a user