source: ntrip/trunk/BNS/bns.pro@ 1668

Last change on this file since 1668 was 1668, checked in by weber, 15 years ago

* empty log message *

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