mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
49 lines
908 B
CMake
49 lines
908 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
|
|
${Boost_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(TARGET_NAME demodatv)
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${atv_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
Qt5::Widgets
|
|
sdrbase
|
|
sdrgui
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|
|
|
|
# Install debug symbols
|
|
if (WIN32)
|
|
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
|
|
endif()
|