-
Notifications
You must be signed in to change notification settings - Fork 4
/
MeteorDemod.pro
162 lines (147 loc) · 5.17 KB
/
MeteorDemod.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
CONFIG += c++17 console
CONFIG -= app_bundle
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS LIQUID_BUILD_CPLUSPLUS
DEFINES +=_USE_MATH_DEFINES
DEFINES += _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING
QMAKE_LFLAGS += -lstdc++fs
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
DSP/meteorcostas.cpp \
DSP/mm.cpp \
DSP/phasecontrolloop.cpp \
DSP/pll.cpp \
DSP/polyphasebank.cpp \
DSP/window.cpp \
DSP/windowedsinc.cpp \
GIS/dbfilereader.cpp \
decoder/deinterleaver.cpp \
decoder/viterbi.cpp \
main.cpp \
GIS/shapereader.cpp \
GIS/shaperenderer.cpp \
decoder/meteorimage.cpp \
decoder/packetparser.cpp \
decoder/reedsolomon.cpp \
decoder/bitio.cpp \
decoder/correlation.cpp \
decoder/meteordecoder.cpp \
imageproc/spreadimage.cpp \
imageproc/threatimage.cpp \
common/settings.cpp \
tools/databuffer.cpp \
tools/iniparser.cpp \
tools/pixelgeolocationcalculator.cpp \
tools/threadpool.cpp \
tools/tlereader.cpp \
tools/matrix.cpp \
tools/vector.cpp \
tools/databuffer.cpp \
DSP/agc.cpp \
DSP/filter.cpp \
DSP/iqsource.cpp \
DSP/meteordemodulator.cpp \
DSP/wavreader.cpp \
DSP/mm.cpp
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
DSP/meteorcostas.h \
DSP/mm.h \
DSP/phasecontrolloop.h \
DSP/pll.h \
DSP/polyphasebank.h \
DSP/window.h \
DSP/windowedsinc.h \
GIS/dbfilereader.h \
GIS/shapereader.h \
GIS/shaperenderer.h \
common/global.h \
decoder/deinterleaver.h \
decoder/viterbi.h \
decoder/meteorimage.h \
decoder/packetparser.h \
decoder/bitio.h \
decoder/correlation.h \
decoder/reedsolomon.h \
imageproc/spreadimage.h \
imageproc/threatimage.h \
common/settings.h \
common/version.h \
tools/databuffer.h \
tools/iniparser.h \
tools/pixelgeolocationcalculator.h \
tools/matrix.h \
tools/threadpool.h \
tools/tlereader.h \
tools/vector.h \
tools/databuffer.h \
DSP/agc.h \
DSP/filter.h \
DSP/iqsource.h \
DSP/meteordemodulator.h \
DSP/wavreader.h \
DSP/mm.h
INCLUDEPATH += ../../opencv/own_build_x86/install/include
INCLUDEPATH += ./decoder
INCLUDEPATH += ./common
INCLUDEPATH += ./tools
INCLUDEPATH += ./imageproc
INCLUDEPATH += $$PWD/external/libcorrect/include
INCLUDEPATH += $$PWD/external/sgp4/libsgp4
win32 {
!contains(QMAKE_TARGET.arch, x86_64) {
CONFIG(debug, debug|release) {
message("x86 debug build")
LIBS += $$PWD/external/libcorrect/build_x86/lib/Debug/correct.lib
LIBS += $$PWD/external/sgp4/build_x86/libsgp4/Debug/sgp4.lib
LIBS += -L$$PWD/../../opencv/own_build_x86/lib/Debug
SHARED_LIB_FILES = $$files($$PWD/../../opencv/own_build_x86/lib/Debug/*.lib)
for(FILE, SHARED_LIB_FILES) {
BASENAME = $$basename(FILE)
LIBS += -l$$replace(BASENAME,\.lib,)
}
} else {
message("x86 release build")
LIBS += $$PWD/external/libcorrect/build_x86/lib/Release/correct.lib
LIBS += $$PWD/external/sgp4/build_x86/libsgp4/Release/sgp4.lib
LIBS += -L$$PWD/../../opencv/own_build_x86/lib/Release
SHARED_LIB_FILES = $$files($$PWD/../../opencv/own_build_x86/lib/Release/*.lib)
for(FILE, SHARED_LIB_FILES) {
BASENAME = $$basename(FILE)
LIBS += -l$$replace(BASENAME,\.lib,)
}
}
}
else {
CONFIG(debug, debug|release) {
message("x64 debug build")
LIBS += $$PWD/external/libcorrect/build/lib/Debug/correct.lib
LIBS += $$PWD/external/sgp4/build/libsgp4/Debug/sgp4.lib
LIBS += -L$$PWD/../../opencv/own_build_x64/lib/Debug
SHARED_LIB_FILES = $$files($$PWD/../../opencv/own_build_x64/lib/Debug/*.lib)
for(FILE, SHARED_LIB_FILES) {
BASENAME = $$basename(FILE)
LIBS += -l$$replace(BASENAME,\.lib,)
}
} else {
message("x64 release build")
LIBS += $$PWD/external/libcorrect/build/lib/Release/correct.lib
LIBS += $$PWD/external/sgp4/build/libsgp4/Release/sgp4.lib
LIBS += -L$$PWD/../../opencv/own_build_x64/lib/Release
SHARED_LIB_FILES = $$files($$PWD/../../opencv/own_build_x64/lib/Release/*.lib)
for(FILE, SHARED_LIB_FILES) {
BASENAME = $$basename(FILE)
LIBS += -l$$replace(BASENAME,\.lib,)
}
}
}
}