2018-05-30 15:42:33 +02:00
|
|
|
project(chanalyzer)
|
2017-01-29 19:51:45 +01:00
|
|
|
|
2018-05-30 15:42:33 +02:00
|
|
|
set(chanalyzer_SOURCES
|
2018-05-30 15:37:56 +02:00
|
|
|
chanalyzer.cpp
|
|
|
|
chanalyzergui.cpp
|
|
|
|
chanalyzerplugin.cpp
|
2019-11-24 10:12:58 +01:00
|
|
|
chanalyzersettings.cpp
|
|
|
|
chanalyzersink.cpp
|
|
|
|
chanalyzerbaseband.cpp
|
2019-08-08 18:42:17 +02:00
|
|
|
chanalyzerwebapiadapter.cpp
|
2019-05-01 11:54:58 +02:00
|
|
|
chanalyzergui.ui
|
2017-01-29 19:51:45 +01:00
|
|
|
)
|
|
|
|
|
2018-05-30 15:42:33 +02:00
|
|
|
set(chanalyzer_HEADERS
|
2018-05-30 15:37:56 +02:00
|
|
|
chanalyzer.h
|
|
|
|
chanalyzergui.h
|
|
|
|
chanalyzerplugin.h
|
2019-11-24 10:12:58 +01:00
|
|
|
chanalyzersettings.h
|
|
|
|
chanalyzersink.h
|
|
|
|
chanalyzerbaseband.h
|
2019-08-08 18:42:17 +02:00
|
|
|
chanalyzerwebapiadapter.h
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
2020-11-05 11:11:43 +01:00
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
|
|
${Boost_INCLUDE_DIRS}
|
2017-01-29 19:51:45 +01:00
|
|
|
)
|
|
|
|
|
2018-05-30 15:42:33 +02:00
|
|
|
add_library(chanalyzer SHARED
|
|
|
|
${chanalyzer_SOURCES}
|
2017-01-29 19:51:45 +01:00
|
|
|
)
|
|
|
|
|
2018-05-30 15:42:33 +02:00
|
|
|
target_link_libraries(chanalyzer
|
2019-08-08 18:42:17 +02:00
|
|
|
Qt5::Core
|
|
|
|
Qt5::Widgets
|
2017-01-29 19:51:45 +01:00
|
|
|
sdrbase
|
2017-10-22 19:12:43 +02:00
|
|
|
sdrgui
|
2017-01-29 19:51:45 +01:00
|
|
|
)
|
|
|
|
|
2019-05-01 15:17:27 +02:00
|
|
|
install(TARGETS chanalyzer DESTINATION ${INSTALL_PLUGINS_DIR})
|