[747] | 1 |
|
---|
| 2 | # Switch to debug configuration
|
---|
| 3 | # -----------------------------
|
---|
[928] | 4 | CONFIG += release
|
---|
| 5 | #CONFIG += debug
|
---|
[747] | 6 |
|
---|
| 7 | RESOURCES += bns.qrc
|
---|
| 8 |
|
---|
[1212] | 9 | # Get rid of wrong warnings with MinGW g++ Version 3.4.5
|
---|
| 10 | # ------------------------------------------------------
|
---|
| 11 | win32:CONFIG += warn_off
|
---|
| 12 |
|
---|
[747] | 13 | # Get rid of mingwm10.dll
|
---|
| 14 | # -----------------------
|
---|
| 15 | win32:QMAKE_LFLAGS -= -mthreads
|
---|
| 16 | win32:QMAKE_CXXFLAGS_EXCEPTIONS_ON -= -mthreads
|
---|
| 17 | win32:QMAKE_LFLAGS_EXCEPTIONS_ON -= -mthreads
|
---|
| 18 |
|
---|
| 19 | debug:OBJECTS_DIR=.obj/debug
|
---|
| 20 | debug:MOC_DIR=.moc/debug
|
---|
| 21 | release:OBJECTS_DIR=.obj/release
|
---|
| 22 | release:MOC_DIR=.moc/release
|
---|
| 23 |
|
---|
[810] | 24 | # Include Path
|
---|
| 25 | # ------------
|
---|
| 26 | INCLUDEPATH = . ./newmat
|
---|
[784] | 27 |
|
---|
[758] | 28 | HEADERS = bns.h bnswindow.h bnshlpdlg.h bnshtml.h \
|
---|
[862] | 29 | bnseph.h bnsutils.h bnsrinex.h bnssp3.h bnsoutf.h \
|
---|
[1062] | 30 | bnscaster.h RTCM/clock_orbit_rtcm.h
|
---|
[747] | 31 |
|
---|
[810] | 32 | HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h \
|
---|
| 33 | newmat/newmatap.h newmat/newmat.h newmat/newmatio.h \
|
---|
| 34 | newmat/newmatrc.h newmat/newmatrm.h newmat/precisio.h
|
---|
| 35 |
|
---|
[862] | 36 | SOURCES = bnsmain.cpp bns.cpp bnswindow.cpp bnshlpdlg.cpp bnshtml.cpp \
|
---|
| 37 | bnseph.cpp bnsutils.cpp bnsrinex.cpp bnssp3.cpp bnsoutf.cpp \
|
---|
[1062] | 38 | bnscaster.cpp RTCM/clock_orbit_rtcm.c
|
---|
[747] | 39 |
|
---|
[810] | 40 | SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp \
|
---|
| 41 | newmat/fft.cpp newmat/hholder.cpp newmat/jacobi.cpp \
|
---|
| 42 | newmat/myexcept.cpp newmat/newfft.cpp newmat/newmat1.cpp \
|
---|
| 43 | newmat/newmat2.cpp newmat/newmat3.cpp newmat/newmat4.cpp \
|
---|
| 44 | newmat/newmat5.cpp newmat/newmat6.cpp newmat/newmat7.cpp \
|
---|
| 45 | newmat/newmat8.cpp newmat/newmat9.cpp newmat/newmatex.cpp \
|
---|
| 46 | newmat/newmatrm.cpp newmat/nm_misc.cpp newmat/sort.cpp \
|
---|
| 47 | newmat/submat.cpp newmat/svd.cpp
|
---|
| 48 |
|
---|
[747] | 49 | RC_FILE = bns.rc
|
---|
| 50 |
|
---|
| 51 | QT += network
|
---|
| 52 |
|
---|