-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcppGUI.pro
More file actions
52 lines (46 loc) · 1.1 KB
/
cppGUI.pro
File metadata and controls
52 lines (46 loc) · 1.1 KB
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
include("../lib.pri")
#base settings
QT += gui widgets charts
TARGET = cppGUI
DEFINES += CPPGUI_LIBRARY
#include cppCORE library
INCLUDEPATH += $$PWD/../cppCORE
LIBS += -L$$PWD/../../bin -lcppCORE
SOURCES += \
Application.cpp \
GUIHelper.cpp \
FileChooser.cpp \
ClickableLabel.cpp \
ClickableLineEdit.cpp \
ColorSelector.cpp \
ScrollableTextDialog.cpp \
BusyDialog.cpp \
QrCodeGenerator/BitBuffer.cpp \
QrCodeGenerator/QrCode.cpp \
QrCodeGenerator/QrSegment.cpp \
QrCodeFactory.cpp \
DelayedInitializationTimer.cpp \
TsvTableWidget.cpp \
ImageLabel.cpp
HEADERS += \
Application.h \
GUIHelper.h \
FileChooser.h \
ClickableLabel.h \
ClickableLineEdit.h \
ColorSelector.h \
ScrollableTextDialog.h \
BusyDialog.h \
QrCodeGenerator/BitBuffer.h \
QrCodeGenerator/QrCode.h \
QrCodeGenerator/QrSegment.h \
QrCodeFactory.h \
DelayedInitializationTimer.h \
TsvTableWidget.h \
ImageLabel.h
RESOURCES += \
resources.qrc
FORMS += \
ScrollableTextDialog.ui \
BusyDialog.ui \
TsvTableWidget.ui