-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVFP.pro
49 lines (41 loc) · 1.02 KB
/
VFP.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
#-------------------------------------------------
#
# Project created by QtCreator 2014-10-15T21:38:29
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = VFP
TEMPLATE = app
SOURCES += main.cpp \
View/mainview.cpp \
View/setuptab.cpp \
startup.cpp \
utils.cpp \
Model/settings.cpp \
Model/provider.cpp \
Model/instsocket.cpp \
Model/instrument.cpp \
ViewMgr/setupviewmanager.cpp \
View/controltab.cpp \
ViewMgr/controltabviewmanager.cpp \
View/aboutbox.cpp
HEADERS += View/mainview.h \
View/setuptab.h \
startup.h \
utils.h \
Model/settings.h \
Model/provider.h \
Model/instsocket.h \
Model/instrument.h \
ViewMgr/setupviewmanager.h \
View/controltab.h \
ViewMgr/controltabviewmanager.h \
View/aboutbox.h
FORMS += View/mainview.ui \
View/setuptab.ui \
View/controltab.ui \
View/aboutbox.ui
OTHER_FILES +=
RESOURCES += \
VfpResources.qrc