1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

Use header only Boost linking for ADS-B plugin

This commit is contained in:
Jon Beniston 2020-11-06 15:13:34 +00:00
parent 2579417e4d
commit e76015f28f

View File

@ -1,7 +1,3 @@
if(WIN32)
link_directories(${BOOST_LIBRARYDIR})
endif()
project(adsb)
set(adsb_SOURCES
@ -75,7 +71,12 @@ add_library(${TARGET_NAME} SHARED
${adsb_SOURCES}
)
if (NOT WIN32)
link_directories(${Boost_LIBRARY_DIRS})
endif()
target_link_libraries(${TARGET_NAME}
Boost::disable_autolinking
Qt5::Core
${TARGET_LIB}
sdrbase