mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
52 lines
842 B
CMake
52 lines
842 B
CMake
project(atv)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
set(atv_SOURCES
|
|
atvdemod.cpp
|
|
atvdemodsettings.cpp
|
|
atvdemodgui.cpp
|
|
atvdemodplugin.cpp
|
|
)
|
|
|
|
set(atv_HEADERS
|
|
atvdemod.h
|
|
atvdemodsettings.h
|
|
atvdemodgui.h
|
|
atvdemodplugin.h
|
|
)
|
|
|
|
set(atv_FORMS
|
|
atvdemodgui.ui
|
|
)
|
|
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${Boost_INCLUDE_DIRS}
|
|
)
|
|
|
|
#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
|
|
sdrgui
|
|
)
|
|
|
|
target_link_libraries(demodatv Qt5::Core Qt5::Widgets)
|
|
|
|
install(TARGETS demodatv DESTINATION lib/plugins/channelrx)
|