2015-11-19 03:27:37 +01:00
|
|
|
project(udpsrc)
|
|
|
|
|
2018-05-28 08:53:08 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
|
2015-11-19 03:27:37 +01:00
|
|
|
set(udpsrc_SOURCES
|
|
|
|
udpsrc.cpp
|
|
|
|
udpsrcgui.cpp
|
|
|
|
udpsrcplugin.cpp
|
2017-10-05 00:55:14 +02:00
|
|
|
udpsrcsettings.cpp
|
2015-11-19 03:27:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
set(udpsrc_HEADERS
|
|
|
|
udpsrc.h
|
|
|
|
udpsrcgui.h
|
|
|
|
udpsrcplugin.h
|
2017-10-05 00:55:14 +02:00
|
|
|
udpsrcsettings.h
|
2015-11-19 03:27:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
set(udpsrc_FORMS
|
|
|
|
udpsrcgui.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2018-05-25 10:45:40 +02:00
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
2015-11-19 03:27:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
add_definitions(-DQT_PLUGIN)
|
|
|
|
add_definitions(-DQT_SHARED)
|
|
|
|
|
|
|
|
qt5_wrap_ui(udpsrc_FORMS_HEADERS ${udpsrc_FORMS})
|
|
|
|
|
|
|
|
add_library(demodudpsrc SHARED
|
|
|
|
${udpsrc_SOURCES}
|
|
|
|
${udpsrc_HEADERS_MOC}
|
|
|
|
${udpsrc_FORMS_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(demodudpsrc
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
sdrbase
|
2017-10-22 19:12:43 +02:00
|
|
|
sdrgui
|
2015-11-19 03:27:37 +01:00
|
|
|
)
|
|
|
|
|
2018-06-13 00:20:51 +02:00
|
|
|
target_link_libraries(demodudpsrc Qt5::Core Qt5::Widgets Qt5::Network)
|
2016-02-24 11:51:36 +01:00
|
|
|
|
2016-10-02 13:18:07 +02:00
|
|
|
install(TARGETS demodudpsrc DESTINATION lib/plugins/channelrx)
|