mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 08:21:16 -05:00
70434765d7
- Specify byproducts in external projects - Use external Boost - Remove hacky Qt detection - Fix CRT mismatch in external projects (fixes SoapySDR on Windows) - Minor fixes
40 lines
635 B
CMake
40 lines
635 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(
|
|
${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})
|