mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
41 lines
661 B
CMake
41 lines
661 B
CMake
project(atv)
|
|
|
|
set(atv_SOURCES
|
|
atvdemod.cpp
|
|
atvdemodbaseband.cpp
|
|
atvdemodsink.cpp
|
|
atvdemodsettings.cpp
|
|
atvdemodwebapiadapter.cpp
|
|
atvdemodgui.cpp
|
|
atvdemodplugin.cpp
|
|
atvdemodgui.ui
|
|
)
|
|
|
|
set(atv_HEADERS
|
|
atvdemod.h
|
|
atvdemodbaseband.h
|
|
atvdemodsink.h
|
|
atvdemodsettings.h
|
|
atvdemodwebapiadapter.h
|
|
atvdemodgui.h
|
|
atvdemodplugin.h
|
|
)
|
|
|
|
include_directories(
|
|
${Boost_INCLUDE_DIRS}
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
)
|
|
|
|
add_library(demodatv SHARED
|
|
${atv_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(demodatv
|
|
Qt5::Core
|
|
Qt5::Widgets
|
|
sdrbase
|
|
sdrgui
|
|
)
|
|
|
|
install(TARGETS demodatv DESTINATION ${INSTALL_PLUGINS_DIR})
|