2017-02-23 02:18:56 -05:00
|
|
|
project(atv)
|
|
|
|
|
2018-11-24 15:21:04 -05:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
|
2017-02-23 02:18:56 -05:00
|
|
|
set(atv_SOURCES
|
|
|
|
atvdemod.cpp
|
2017-12-29 17:00:52 -05:00
|
|
|
atvdemodsettings.cpp
|
2017-02-23 02:18:56 -05:00
|
|
|
atvdemodgui.cpp
|
|
|
|
atvdemodplugin.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(atv_HEADERS
|
|
|
|
atvdemod.h
|
2017-12-29 17:00:52 -05:00
|
|
|
atvdemodsettings.h
|
2017-02-23 02:18:56 -05:00
|
|
|
atvdemodgui.h
|
|
|
|
atvdemodplugin.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(atv_FORMS
|
|
|
|
atvdemodgui.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2018-12-01 21:06:04 -05:00
|
|
|
${Boost_INCLUDE_DIRS}
|
2017-02-23 02:18:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
#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
|
|
|
)
|
|
|
|
|
2018-06-12 18:20:51 -04:00
|
|
|
target_link_libraries(demodatv Qt5::Core Qt5::Widgets)
|
2017-02-23 02:18:56 -05:00
|
|
|
|
|
|
|
install(TARGETS demodatv DESTINATION lib/plugins/channelrx)
|