Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcppGUI.pro
More file actions
Latest commit
58 lines (52 loc) · 1.24 KB
/
Copy pathcppGUI.pro
File metadata and controls
58 lines (52 loc) · 1.24 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
53
54
55
56
57
58
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 += \
AboutDialog.cpp\
Application.cpp\
GUIHelper.cpp\
FileChooser.cpp\
ClickableLabel.cpp\
ClickableLineEdit.cpp\
ColorSelector.cpp\
MarkdownEditor.cpp\
ScrollableTextDialog.cpp\
BusyDialog.cpp\
QrCodeGenerator/BitBuffer.cpp\
QrCodeGenerator/QrCode.cpp\
QrCodeGenerator/QrSegment.cpp\
QrCodeFactory.cpp\
DelayedInitializationTimer.cpp\
TsvTableWidget.cpp\
ImageLabel.cpp
HEADERS += \
AboutDialog.h\
Application.h\
GUIHelper.h\
FileChooser.h\
ClickableLabel.h\
ClickableLineEdit.h\
ColorSelector.h\
MarkdownEditor.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 += \
AboutDialog.ui\
MarkdownEditor.ui\
ScrollableTextDialog.ui\
BusyDialog.ui\
TsvTableWidget.ui