This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
vag-blocks.pro
82 lines (70 loc) · 1.73 KB
/
vag-blocks.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#-------------------------------------------------
#
# Project created by QtCreator 2012-10-13T14:44:42
#
#-------------------------------------------------
QT += core gui
TARGET = vagblocks
TEMPLATE = app
VERSION = 1.0.0
SVN_REV = $$system(svnversion)
VERSION_STR = '\\"$${VERSION}\\"'
SVN_REV_STR = '\\"$${SVN_REV}\\"'
DEFINES += APP_VERSION=\"$${VERSION_STR}\"
DEFINES += APP_SVN_REV=\"$${SVN_REV_STR}\"
SOURCES += main.cpp\
mainwindow.cpp \
elm327.cpp \
tp20.cpp \
canframe.cpp \
kwp2000.cpp \
util.cpp \
serialsettings.cpp \
monitor.cpp \
clicklineedit.cpp \
about.cpp \
settings.cpp
HEADERS += mainwindow.h \
elm327.h \
tp20.h \
canframe.h \
kwp2000.h \
util.h \
serialsettings.h \
monitor.h \
clicklineedit.h \
about.h \
settings.h
FORMS += mainwindow.ui \
serialsettings.ui \
about.ui \
settings.ui
# used to disable "imp" macro in library function names for qtserialport
static {
DEFINES += STATIC_BUILD
}
!win32 {
INCLUDEPATH += "../qtserialport/src" "../qwt-6.0/src"
LIBS += -L../qtserialport/src -L../qwt-6.0/lib
LIBS += -lSerialPort -lqwt
}
win32 {
RC_FILE = resources/winres.rc
INCLUDEPATH += "../qtserialport/src" "C:/qwt-6.0/src"
LIBS += -LC:/qwt-6.0/lib
LIBS += -lSerialPort
CONFIG(release, debug|release) {
LIBS += -L../qtserialport/src/release -lqwt
static {
# needed for qtserialport
LIBS += -lsetupapi -ladvapi32
}
}
else {
LIBS += -L../qtserialport/src/debug -lqwtd
}
}
RESOURCES += \
icons.qrc
OTHER_FILES += \
resources/winres.rc