1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-26 15:03:14 +00:00

Fix for old CMake

This commit is contained in:
Carles Fernandez 2022-08-23 15:12:09 +02:00
parent 8247021f32
commit e15faa7b67
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 12 additions and 1 deletions

View File

@ -416,7 +416,11 @@ if(GNURADIO_RUNTIME_INCLUDE_DIRS)
PURPOSE "Required by GNU Radio."
TYPE REQUIRED
)
target_link_libraries(Gnuradio::filter INTERFACE Log4cpp::log4cpp)
if(CMAKE_VERSION VERSION_GREATER 3.0)
target_link_libraries(Gnuradio::filter INTERFACE Log4cpp::log4cpp)
else()
set(LOG4CPP_WITH_OLD_CMAKE TRUE)
endif()
endif()
if(${_uses_spdlog})
find_package(spdlog REQUIRED CONFIG)

View File

@ -53,6 +53,13 @@ target_include_directories(input_filter_gr_blocks
${GNSSSDR_SOURCE_DIR}/src/core/interfaces
)
if(LOG4CPP_WITH_OLD_CMAKE)
target_link_libraries(input_filter_gr_blocks
PRIVATE
Log4cpp::log4cpp
)
endif()
if(GNURADIO_USES_STD_POINTERS)
target_compile_definitions(input_filter_gr_blocks
PUBLIC -DGNURADIO_USES_STD_POINTERS=1