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

Last change on this file since 784 was 784, checked in by mervart, 16 years ago

* empty log message *

File size: 1.0 KB
Line 
1
2# Switch to debug configuration
3# -----------------------------
4CONFIG -= release
5CONFIG += debug
6
7RESOURCES += bns.qrc
8
9unix:QMAKE_CFLAGS_RELEASE -= -O2
10unix:QMAKE_CXXFLAGS_RELEASE -= -O2
11
12# Location of the NewMat Library
13# ------------------------------
14unix:NEWMAT_ROOT = $$(NEWMAT_ROOT)
15win32:NEWMAT_ROOT = ../../Source/newmat
16
17# Get rid of mingwm10.dll
18# -----------------------
19win32:QMAKE_LFLAGS -= -mthreads
20win32:QMAKE_CXXFLAGS_EXCEPTIONS_ON -= -mthreads
21win32:QMAKE_LFLAGS_EXCEPTIONS_ON -= -mthreads
22
23debug:OBJECTS_DIR=.obj/debug
24debug:MOC_DIR=.moc/debug
25release:OBJECTS_DIR=.obj/release
26release:MOC_DIR=.moc/release
27
28# Include Path and additional Libraries
29# -------------------------------------
30INCLUDEPATH = . $$NEWMAT_ROOT/include
31LIBS = -L$$NEWMAT_ROOT/lib -lnewmat
32
33HEADERS = bns.h bnswindow.h bnshlpdlg.h bnshtml.h \
34 bnseph.h bnsutils.h
35
36SOURCES = bnsmain.cpp bns.cpp bnswindow.cpp bnshlpdlg.cpp bnshtml.cpp \
37 bnseph.cpp bnsutils.cpp
38
39RC_FILE = bns.rc
40
41QT += network
42
Note: See TracBrowser for help on using the repository browser.