blob: c47acd99b6561f29e9577be8f66372bc646947fd (
plain)
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
|
QT += xml svg
CONFIG += debug
SOURCES = \
column.cpp \
columnlistmodel.cpp \
columnlistview.cpp \
main.cpp \
mainwindow.cpp \
databasemodelview.cpp \
databasemodel.cpp \
databasemodelitem.cpp \
databasetable.cpp \
databaserelation.cpp \
tableproperties.cpp \
commands.cpp
HEADERS = \
column.h \
columnlistmodel.h \
columnlistview.h \
mainwindow.h \
databasemodelview.h \
databasemodel.h \
databasemodelitem.h \
databasetable.h \
databaserelation.h \
tableproperties.h \
commands.h
RESOURCES = dbmodel.qrc
FORMS = tableproperties.ui
|