This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
goat.pro
110 lines (87 loc) · 2.02 KB
/
goat.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
99
100
101
102
103
104
105
106
107
108
109
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-08T23:58:37
#
#-------------------------------------------------
QT += core gui sql
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
SOURCES += \
src/ConnectionManager.cpp \
src/Connection.cpp \
src/Csv.cpp \
ui/TableView.cpp \
ui/MainWindow.cpp \
ui/CodeEditor.cpp \
ui/Highlighter.cpp \
ui/AboutDialog.cpp \
ui/ConnectionWidget.cpp \
ui/ConnectionManagerDialog.cpp \
ui/QueryTab.cpp \
src/StringUtils.cpp \
src/Query.cpp \
src/QueryExporter.cpp \
src/QueryStopper.cpp \
src/AbstractQuery.cpp \
ui/ExportQueryDialog.cpp \
src/DataFormatter.cpp
HEADERS += \
src/ConnectionManager.h \
src/Connection.h \
src/Csv.h \
ui/TableView.h \
ui/MainWindow.h \
ui/CodeEditor.h \
ui/Highlighter.h \
ui/AboutDialog.h \
ui/ConnectionWidget.h \
ui/ConnectionManagerDialog.h \
ui/QueryTab.h \
src/StringUtils.h \
src/Query.h \
src/Row.h \
src/RowSet.h \
src/QueryExporter.h \
src/QueryStopper.h \
src/AbstractQuery.h \
ui/ExportQueryDialog.h \
src/DataFormatter.h
FORMS += \
ui/MainWindow.ui \
ui/TableView.ui \
ui/AboutDialog.ui \
ui/ConnectionWidget.ui \
ui/ConnectionManagerDialog.ui \
ui/QueryTab.ui \
ui/ExportQueryDialog.ui
DISTFILES += \
LICENSE \
README.md \
CMakeLists.txt
RESOURCES += \
resources/data.qrc \
resources/icons.qrc
test {
TEMPLATE = app
TARGET = tests
QT += testlib
HEADERS += \
test/TestStringUtils.h
SOURCES += \
test/TestStringUtils.cpp \
test/test_main.cpp
} else {
TEMPLATE = app
TARGET = goat
TARGET.files = goat
TARGET.path = /usr/bin
INSTALLS += TARGET
SOURCES += \
src/main.cpp
ICON.files = packaging/goat.png
ICON.path = /usr/share/icons/hicolor/16x16
INSTALLS += ICON
DESKTOP.files = packaging/goat.desktop
DESKTOP.path = /usr/share/applications
INSTALLS += DESKTOP
}