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(demodssb)
add_subdirectory(udpsrc) add_subdirectory(udpsrc)
add_subdirectory(demodwfm) add_subdirectory(demodwfm)
add_subdirectory(chanalyzerng) add_subdirectory(chanalyzer)
add_subdirectory(demodatv) add_subdirectory(demodatv)
if(LIBDSDCC_FOUND AND LIBMBE_FOUND) 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 chanalyzer.cpp
chanalyzergui.cpp chanalyzergui.cpp
chanalyzerplugin.cpp chanalyzerplugin.cpp
chanalyzersettings.cpp chanalyzersettings.cpp
) )
set(chanalyzerng_HEADERS set(chanalyzer_HEADERS
chanalyzer.h chanalyzer.h
chanalyzergui.h chanalyzergui.h
chanalyzerplugin.h chanalyzerplugin.h
chanalyzersettings.h chanalyzersettings.h
) )
set(chanalyzerng_FORMS set(chanalyzer_FORMS
chanalyzernggui.ui chanalyzergui.ui
) )
include_directories( include_directories(
@ -29,20 +29,20 @@ add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED) add_definitions(-DQT_SHARED)
#qt5_wrap_cpp(chanalyzer_HEADERS_MOC ${chanalyzer_HEADERS}) #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 add_library(chanalyzer SHARED
${chanalyzerng_SOURCES} ${chanalyzer_SOURCES}
${chanalyzerng_HEADERS_MOC} ${chanalyzer_HEADERS_MOC}
${chanalyzerng_FORMS_HEADERS} ${chanalyzer_FORMS_HEADERS}
) )
target_link_libraries(chanalyzerng target_link_libraries(chanalyzer
${QT_LIBRARIES} ${QT_LIBRARIES}
sdrbase sdrbase
sdrgui 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 <QMainWindow>
#include "dsp/threadedbasebandsamplesink.h" #include "dsp/threadedbasebandsamplesink.h"
#include "ui_chanalyzernggui.h" #include "ui_chanalyzergui.h"
#include "dsp/spectrumscopengcombovis.h" #include "dsp/spectrumscopengcombovis.h"
#include "dsp/spectrumvis.h" #include "dsp/spectrumvis.h"
#include "dsp/scopevis.h" #include "dsp/scopevis.h"