-
Notifications
You must be signed in to change notification settings - Fork 0
/
physics.pro
50 lines (41 loc) · 1.14 KB
/
physics.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
#-------------------------------------------------
#
# Project created by QtCreator 2011-01-08T00:07:45
#
#-------------------------------------------------
QT += core gui
TARGET = physics
TEMPLATE = app
unix {
INCLUDEPATH += "/usr/include/qwt-qt4/"
LIBS += -lqwt-qt4
}
win32 {
QWT_LOCATION = C:/qwt-5.2.1 # Qwt location (must match exactly to where you unzip the files)
INCLUDEPATH += $${QWT_LOCATION}/src
LIBS = -L$${QWT_LOCATION}/lib \
-lqwt
# The following section is to select static lib base on debug or release build
if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
LIBS = $$member(LIBS, 0) \
$$member(LIBS, 1)d
}
}
SOURCES += main.cpp\
mainwindow.cpp \
storagethread.cpp \
processorthread.cpp \
resultswindow.cpp \
resultstablemodel.cpp \
preprocessorthread.cpp \
configurationwindow.cpp
HEADERS += mainwindow.h \
storagethread.h \
processorthread.h \
resultswindow.h \
resultstablemodel.h \
preprocessorthread.h \
configurationwindow.h
FORMS += mainwindow.ui \
resultswindow.ui \
configurationwindow.ui