mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-23 08:28:36 -05:00
Windows build fixes
This commit is contained in:
parent
d7247dbccf
commit
1dcb84ef8f
@ -32,12 +32,15 @@ CONFIG(Debug):build_subdir = debug
|
|||||||
|
|
||||||
SOURCES += chanalyzerng.cpp\
|
SOURCES += chanalyzerng.cpp\
|
||||||
chanalyzernggui.cpp\
|
chanalyzernggui.cpp\
|
||||||
chanalyzerngplugin.cpp
|
chanalyzerngplugin.cpp\
|
||||||
|
chanalyzerngsettings.cpp\
|
||||||
|
|
||||||
HEADERS += chanalyzerng.h\
|
HEADERS += chanalyzerng.h\
|
||||||
chanalyzernggui.h\
|
chanalyzernggui.h\
|
||||||
|
chanalyzerngplugin.h\
|
||||||
chanalyzerngplugin.h
|
chanalyzerngplugin.h
|
||||||
|
|
||||||
|
|
||||||
FORMS += chanalyzernggui.ui
|
FORMS += chanalyzernggui.ui
|
||||||
|
|
||||||
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||||
|
@ -29,14 +29,17 @@ CONFIG(Debug):build_subdir = debug
|
|||||||
SOURCES += amdemod.cpp\
|
SOURCES += amdemod.cpp\
|
||||||
amdemodgui.cpp\
|
amdemodgui.cpp\
|
||||||
amdemodplugin.cpp\
|
amdemodplugin.cpp\
|
||||||
amdemodsettings.cpp
|
amdemodsettings.cpp\
|
||||||
|
amdemodssbdialog.cpp
|
||||||
|
|
||||||
HEADERS += amdemod.h\
|
HEADERS += amdemod.h\
|
||||||
amdemodgui.h\
|
amdemodgui.h\
|
||||||
amdemodplugin.h\
|
amdemodplugin.h\
|
||||||
amdemodsettings.h
|
amdemodsettings.h\
|
||||||
|
amdemodssbdialog.h
|
||||||
|
|
||||||
FORMS += amdemodgui.ui
|
FORMS += amdemodgui.ui\
|
||||||
|
amdemodssb.ui
|
||||||
|
|
||||||
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||||
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
|
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
|
||||||
|
@ -75,17 +75,20 @@ SOURCES += audio/audiodevicemanager.cpp\
|
|||||||
dsp/dspdevicesinkengine.cpp\
|
dsp/dspdevicesinkengine.cpp\
|
||||||
dsp/fftengine.cpp\
|
dsp/fftengine.cpp\
|
||||||
dsp/kissengine.cpp\
|
dsp/kissengine.cpp\
|
||||||
|
dsp/fftcorr.cpp\
|
||||||
dsp/fftfilt.cxx\
|
dsp/fftfilt.cxx\
|
||||||
dsp/fftwindow.cpp\
|
dsp/fftwindow.cpp\
|
||||||
dsp/filterrc.cpp\
|
dsp/filterrc.cpp\
|
||||||
dsp/filtermbe.cpp\
|
dsp/filtermbe.cpp\
|
||||||
dsp/filerecord.cpp\
|
dsp/filerecord.cpp\
|
||||||
|
dsp/freqlockcomplex.cpp\
|
||||||
dsp/interpolator.cpp\
|
dsp/interpolator.cpp\
|
||||||
dsp/hbfiltertraits.cpp\
|
dsp/hbfiltertraits.cpp\
|
||||||
dsp/lowpass.cpp\
|
dsp/lowpass.cpp\
|
||||||
dsp/nco.cpp\
|
dsp/nco.cpp\
|
||||||
dsp/ncof.cpp\
|
dsp/ncof.cpp\
|
||||||
dsp/phaselock.cpp\
|
dsp/phaselock.cpp\
|
||||||
|
dsp/phaselockcomplex.cpp\
|
||||||
dsp/projector.cpp\
|
dsp/projector.cpp\
|
||||||
dsp/recursivefilters.cpp\
|
dsp/recursivefilters.cpp\
|
||||||
dsp/samplesinkfifo.cpp\
|
dsp/samplesinkfifo.cpp\
|
||||||
@ -146,6 +149,7 @@ HEADERS += audio/audiodevicemanager.h\
|
|||||||
dsp/dspdevicesourceengine.h\
|
dsp/dspdevicesourceengine.h\
|
||||||
dsp/dspdevicesinkengine.h\
|
dsp/dspdevicesinkengine.h\
|
||||||
dsp/dsptypes.h\
|
dsp/dsptypes.h\
|
||||||
|
dsp/fftcorr.h\
|
||||||
dsp/fftengine.h\
|
dsp/fftengine.h\
|
||||||
dsp/fftfilt.h\
|
dsp/fftfilt.h\
|
||||||
dsp/fftwengine.h\
|
dsp/fftwengine.h\
|
||||||
@ -153,6 +157,7 @@ HEADERS += audio/audiodevicemanager.h\
|
|||||||
dsp/filterrc.h\
|
dsp/filterrc.h\
|
||||||
dsp/filtermbe.h\
|
dsp/filtermbe.h\
|
||||||
dsp/filerecord.h\
|
dsp/filerecord.h\
|
||||||
|
dsp/freqlockcomplex.h\
|
||||||
dsp/gfft.h\
|
dsp/gfft.h\
|
||||||
dsp/hbfiltertraits.h\
|
dsp/hbfiltertraits.h\
|
||||||
dsp/iirfilter.h\
|
dsp/iirfilter.h\
|
||||||
@ -172,6 +177,7 @@ HEADERS += audio/audiodevicemanager.h\
|
|||||||
dsp/ncof.h\
|
dsp/ncof.h\
|
||||||
dsp/phasediscri.h\
|
dsp/phasediscri.h\
|
||||||
dsp/phaselock.h\
|
dsp/phaselock.h\
|
||||||
|
dsp/phaselockcomplex.h\
|
||||||
dsp/projector.h\
|
dsp/projector.h\
|
||||||
dsp/recursivefilters.h\
|
dsp/recursivefilters.h\
|
||||||
dsp/samplesinkfifo.h\
|
dsp/samplesinkfifo.h\
|
||||||
|
Loading…
Reference in New Issue
Block a user