2017-02-23 02:18:56 -05:00
|
|
|
project(atv)
|
|
|
|
|
|
|
|
set(atv_SOURCES
|
|
|
|
atvdemod.cpp
|
|
|
|
atvdemodgui.cpp
|
|
|
|
atvdemodplugin.cpp
|
|
|
|
atvscreen.cpp
|
|
|
|
glshaderarray.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(atv_HEADERS
|
|
|
|
atvdemod.h
|
|
|
|
atvdemodgui.h
|
|
|
|
atvdemodplugin.h
|
|
|
|
atvscreen.h
|
2017-11-06 19:04:43 -05:00
|
|
|
atvscreeninterface.h
|
2017-02-23 02:18:56 -05:00
|
|
|
glshaderarray.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(atv_FORMS
|
|
|
|
atvdemodgui.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
add_definitions(-DQT_PLUGIN)
|
|
|
|
add_definitions(-DQT_SHARED)
|
|
|
|
|
|
|
|
#qt5_wrap_cpp(nfm_HEADERS_MOC ${nfm_HEADERS})
|
|
|
|
qt5_wrap_ui(atv_FORMS_HEADERS ${atv_FORMS})
|
|
|
|
|
|
|
|
add_library(demodatv SHARED
|
|
|
|
${atv_SOURCES}
|
|
|
|
${atv_HEADERS_MOC}
|
|
|
|
${atv_FORMS_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(demodatv
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
sdrbase
|
2017-10-22 13:12:43 -04:00
|
|
|
sdrgui
|
2017-02-23 02:18:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
qt5_use_modules(demodatv Core Widgets)
|
|
|
|
|
|
|
|
install(TARGETS demodatv DESTINATION lib/plugins/channelrx)
|