1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 20:36:34 -04:00
sdrangel/plugins/channelrx/demodatv/CMakeLists.txt

55 lines
1.1 KiB
CMake
Raw Normal View History

2017-02-23 02:18:56 -05:00
project(atv)
set(atv_SOURCES
2019-12-01 09:13:35 -05:00
atvdemod.cpp
atvdemodbaseband.cpp
atvdemodsink.cpp
atvdemodsettings.cpp
atvdemodwebapiadapter.cpp
2017-02-23 02:18:56 -05:00
atvdemodgui.cpp
atvdemodplugin.cpp
atvdemodgui.ui
2017-02-23 02:18:56 -05:00
)
set(atv_HEADERS
2019-12-01 09:13:35 -05:00
atvdemod.h
atvdemodbaseband.h
atvdemodsink.h
atvdemodsettings.h
atvdemodwebapiadapter.h
2017-02-23 02:18:56 -05:00
atvdemodgui.h
atvdemodplugin.h
)
include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${Boost_INCLUDE_DIRS}
2017-02-23 02:18:56 -05:00
)
set(TARGET_NAME demodatv)
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
if(NOT Qt6_FOUND)
add_library(${TARGET_NAME} ${atv_SOURCES})
else()
qt_add_plugin(${TARGET_NAME} CLASS_NAME ATVDemodPlugin ${atv_SOURCES})
endif()
if(NOT BUILD_SHARED_LIBS)
set_property(GLOBAL APPEND PROPERTY STATIC_PLUGINS_PROPERTY ${TARGET_NAME})
endif()
2017-02-23 02:18:56 -05:00
target_link_libraries(${TARGET_NAME} PRIVATE
Qt::Core
Qt::Widgets
2017-02-23 02:18:56 -05:00
sdrbase
sdrgui
2017-02-23 02:18:56 -05:00
)
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()