megamove
This commit is contained in:
parent
c2e201f813
commit
f51105bde0
114 changed files with 92 additions and 0 deletions
103
src/src.pro
Normal file
103
src/src.pro
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
#-------------------------------------------------
|
||||
#
|
||||
# Project created by QtCreator 2016-11-11T09:17:13
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets sql
|
||||
|
||||
TARGET = pglab
|
||||
TEMPLATE = app
|
||||
|
||||
INCLUDEPATH += C:\prog\include
|
||||
DEFINES += WIN32_LEAN_AND_MEAN NOMINMAX
|
||||
LIBS += c:\prog\lib\libpq.lib c:\prog\lib\fmt.lib User32.lib ws2_32.lib
|
||||
|
||||
SOURCES += main.cpp\
|
||||
sqlparser.cpp \
|
||||
PgsqlConn.cpp \
|
||||
queryresultmodel.cpp \
|
||||
sqlhighlighter.cpp \
|
||||
jsoncpp.cpp \
|
||||
queryexplainmodel.cpp \
|
||||
explaintreemodelitem.cpp \
|
||||
asyncdbconnection.cpp \
|
||||
tsqueue.cpp \
|
||||
win32event.cpp \
|
||||
waithandlelist.cpp \
|
||||
csvwriter.cpp \
|
||||
databasewindow.cpp \
|
||||
connectionmanagerwindow.cpp \
|
||||
connectionlistmodel.cpp \
|
||||
connectionconfig.cpp \
|
||||
backuprestore.cpp \
|
||||
querytab.cpp \
|
||||
stopwatch.cpp \
|
||||
util.cpp \
|
||||
databaseinspectorwidget.cpp \
|
||||
pgtype.cpp \
|
||||
pgsqldatabasecatalogue.cpp \
|
||||
pgtypecontainer.cpp \
|
||||
tuplesresultwidget.cpp \
|
||||
pgnamespace.cpp \
|
||||
pgclass.cpp \
|
||||
backupdialog.cpp \
|
||||
typeselectionitemmodel.cpp \
|
||||
MasterController.cpp \
|
||||
ParamTypeDelegate.cpp \
|
||||
OpenDatabase.cpp \
|
||||
ParamListModel.cpp \
|
||||
MainWindow.cpp \
|
||||
SqlSyntaxHighlighter.cpp \
|
||||
SqlLexer.cpp
|
||||
|
||||
HEADERS += \
|
||||
sqlparser.h \
|
||||
PgsqlConn.h \
|
||||
queryresultmodel.h \
|
||||
sqlhighlighter.h \
|
||||
queryexplainmodel.h \
|
||||
explaintreemodelitem.h \
|
||||
asyncdbconnection.h \
|
||||
tsqueue.h \
|
||||
win32event.h \
|
||||
waithandlelist.h \
|
||||
csvwriter.h \
|
||||
databasewindow.h \
|
||||
connectionmanagerwindow.h \
|
||||
connectionlistmodel.h \
|
||||
connectionconfig.h \
|
||||
scopeguard.h \
|
||||
expected.h \
|
||||
querytab.h \
|
||||
stopwatch.h \
|
||||
util.h \
|
||||
databaseinspectorwidget.h \
|
||||
pgtype.h \
|
||||
pgsqldatabasecatalogue.h \
|
||||
pgtypecontainer.h \
|
||||
tuplesresultwidget.h \
|
||||
pgnamespace.h \
|
||||
pgclass.h \
|
||||
backupdialog.h \
|
||||
typeselectionitemmodel.h \
|
||||
MasterController.h \
|
||||
ParamTypeDelegate.h \
|
||||
OpenDatabase.h \
|
||||
ParamListModel.h \
|
||||
MainWindow.h \
|
||||
SqlSyntaxHighlighter.h \
|
||||
SqlLexer.h
|
||||
|
||||
FORMS += mainwindow.ui \
|
||||
databasewindow.ui \
|
||||
connectionmanagerwindow.ui \
|
||||
databaseinspectorwidget.ui \
|
||||
tuplesresultwidget.ui \
|
||||
querytab.ui \
|
||||
backupdialog.ui
|
||||
|
||||
RESOURCES += \
|
||||
resources.qrc
|
||||
Loading…
Add table
Add a link
Reference in a new issue