Renamed Channel Analyzer NG to Channel Analyzer (2)

pull/197/head
f4exb 2018-05-30 15:42:33 +02:00
rodzic f8c7763fc7
commit e24e924d2b
13 zmienionych plików z 15 dodań i 15 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ add_subdirectory(demodnfm)
add_subdirectory(demodssb)
add_subdirectory(udpsrc)
add_subdirectory(demodwfm)
add_subdirectory(chanalyzerng)
add_subdirectory(chanalyzer)
add_subdirectory(demodatv)
if(LIBDSDCC_FOUND AND LIBMBE_FOUND)

Wyświetl plik

@ -1,21 +1,21 @@
project(chanalyzerng)
project(chanalyzer)
set(chanalyzerng_SOURCES
set(chanalyzer_SOURCES
chanalyzer.cpp
chanalyzergui.cpp
chanalyzerplugin.cpp
chanalyzersettings.cpp
)
set(chanalyzerng_HEADERS
set(chanalyzer_HEADERS
chanalyzer.h
chanalyzergui.h
chanalyzerplugin.h
chanalyzersettings.h
)
set(chanalyzerng_FORMS
chanalyzernggui.ui
set(chanalyzer_FORMS
chanalyzergui.ui
)
include_directories(
@ -29,20 +29,20 @@ add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED)
#qt5_wrap_cpp(chanalyzer_HEADERS_MOC ${chanalyzer_HEADERS})
qt5_wrap_ui(chanalyzerng_FORMS_HEADERS ${chanalyzerng_FORMS})
qt5_wrap_ui(chanalyzer_FORMS_HEADERS ${chanalyzer_FORMS})
add_library(chanalyzerng SHARED
${chanalyzerng_SOURCES}
${chanalyzerng_HEADERS_MOC}
${chanalyzerng_FORMS_HEADERS}
add_library(chanalyzer SHARED
${chanalyzer_SOURCES}
${chanalyzer_HEADERS_MOC}
${chanalyzer_FORMS_HEADERS}
)
target_link_libraries(chanalyzerng
target_link_libraries(chanalyzer
${QT_LIBRARIES}
sdrbase
sdrgui
)
qt5_use_modules(chanalyzerng Core Widgets )
qt5_use_modules(chanalyzer Core Widgets )
install(TARGETS chanalyzerng DESTINATION lib/plugins/channelrx)
install(TARGETS chanalyzer DESTINATION lib/plugins/channelrx)

Wyświetl plik

@ -21,7 +21,7 @@
#include <QMainWindow>
#include "dsp/threadedbasebandsamplesink.h"
#include "ui_chanalyzernggui.h"
#include "ui_chanalyzergui.h"
#include "dsp/spectrumscopengcombovis.h"
#include "dsp/spectrumvis.h"
#include "dsp/scopevis.h"