This commit is contained in:
eelke 2017-12-16 21:43:51 +01:00
parent 8f1ba8130c
commit 1fe7d3c56d
8 changed files with 410 additions and 4 deletions

View file

@ -9,6 +9,8 @@ QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets sql
QMAKE_CXXFLAGS += /std:c++17
TARGET = pglab
TEMPLATE = app
@ -76,7 +78,8 @@ SOURCES += main.cpp\
ColumnTableModel.cpp \
PgAttribute.cpp \
PgContainer.cpp \
PgAttributeContainer.cpp
PgAttributeContainer.cpp \
PgIndex.cpp
HEADERS += \
QueryResultModel.h \
@ -126,7 +129,8 @@ HEADERS += \
PgNamespaceContainer.h \
ColumnTableModel.h \
PgAttribute.h \
PgAttributeContainer.h
PgAttributeContainer.h \
PgIndex.h
FORMS += mainwindow.ui \
DatabaseWindow.ui \