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

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

* empty log message *

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