2016-12-26 16:06:55 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Project created by QtCreator 2016-11-11T09:17:13
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QT += core gui
|
|
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
|
|
TARGET = Ivory
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += C:\prog\include
|
2017-01-03 07:22:36 +01:00
|
|
|
DEFINES += WIN32_LEAN_AND_MEAN
|
2016-12-26 16:06:55 +01:00
|
|
|
LIBS += c:\prog\lib\libpq.lib
|
|
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
|
|
|
mainwindow.cpp \
|
|
|
|
|
serverproperties.cpp \
|
|
|
|
|
sqlparser.cpp \
|
|
|
|
|
PgsqlConn.cpp \
|
|
|
|
|
queryresultmodel.cpp \
|
2016-12-29 13:48:35 +01:00
|
|
|
sqlhighlighter.cpp \
|
|
|
|
|
jsoncpp.cpp \
|
|
|
|
|
queryexplainmodel.cpp \
|
2017-01-03 07:22:36 +01:00
|
|
|
explaintreemodelitem.cpp \
|
|
|
|
|
asyncdbconnection.cpp \
|
|
|
|
|
tsqueue.cpp \
|
|
|
|
|
win32event.cpp
|
2016-12-26 16:06:55 +01:00
|
|
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
|
|
|
|
serverproperties.h \
|
|
|
|
|
sqlparser.h \
|
|
|
|
|
PgsqlConn.h \
|
|
|
|
|
queryresultmodel.h \
|
2016-12-29 13:48:35 +01:00
|
|
|
sqlhighlighter.h \
|
|
|
|
|
queryexplainmodel.h \
|
2017-01-03 07:22:36 +01:00
|
|
|
explaintreemodelitem.h \
|
|
|
|
|
asyncdbconnection.h \
|
|
|
|
|
tsqueue.h \
|
|
|
|
|
win32event.h
|
2016-12-26 16:06:55 +01:00
|
|
|
|
|
|
|
|
FORMS += mainwindow.ui \
|
|
|
|
|
serverproperties.ui
|