-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpoolview.pro
98 lines (86 loc) · 1.96 KB
/
poolview.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
TEMPLATE = app
QT = gui core widgets printsupport serialport webengine webenginecore webenginewidgets
VERSION = 0.6
CONFIG += qt warn_on debug_and_release
DESTDIR = bin
release {
OBJECTS_DIR = build/release
MOC_DIR = build/release
UI_DIR = build/release
}
debug {
OBJECTS_DIR = build/debug
MOC_DIR = build/debug
UI_DIR = build/debug
}
unix {
LIBS += -lusb-1.0
INCLUDEPATH += ./src
}
win32 {
INCLUDEPATH += ./src c:/devel/libusb/include
QMAKE_LIBDIR += C:/devel/libusb/ms32/dll
LIBS += -llibusb-1.0
}
CONFIG(debug, debug|release) {
unix: TARGET = $$join(TARGET,,,_g)
win32: TARGET = $$join(TARGET,,d)
}
target.path = $$PREFIX/usr/bin
INSTALLS += target
FORMS = ui/summary.ui \
ui/sync.ui \
ui/config.ui \
ui/upload.ui \
ui/besttimesimpl.ui \
ui/analysis.ui \
ui/edit.ui \
ui/export.ui
HEADERS = src/uploadimpl.h \
src/syncimpl.h \
src/configimpl.h \
src/summaryimpl.h \
src/graphwidget.h \
src/datastore.h \
src/calendar.h \
src/podbase.h \
src/podorig.h \
src/podlive.h \
src/poolmate.h \
src/logging.h \
src/FIT.hpp \
src/stdintfwd.hpp \
src/GarminConvert.hpp \
src/besttimesimpl.h \
src/utilities.h \
src/exerciseset.h \
src/poda.h \
src/analysisimpl.h \
src/edit.h \
src/export.h \
src/authdialog.h \
src/authprivate.h
SOURCES = src/uploadimpl.cpp \
src/syncimpl.cpp \
src/configimpl.cpp \
src/summaryimpl.cpp \
src/main.cpp \
src/graphwidget.cpp \
src/datastore.cpp \
src/poolmate.c \
src/calendar.cpp \
src/podorig.cpp \
src/podlive.cpp \
src/FIT.cpp \
src/GarminConvert.cpp \
src/besttimesimpl.cpp \
src/utilities.cpp \
src/poda.cpp \
src/analysisimpl.cpp \
src/edit.cpp \
src/fitwriter.cpp \
src/export.cpp \
src/authdialog.cpp
DISTFILES +=
RESOURCES += \
poolview.qrc