2017-11-26 13:07:21 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Project created by QtCreator 2017-02-26T10:51:14
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QT -= gui
|
2018-11-08 21:50:49 +01:00
|
|
|
QT += sql
|
2017-11-26 13:07:21 +01:00
|
|
|
|
|
|
|
|
TARGET = core
|
|
|
|
|
TEMPLATE = lib
|
2019-03-24 08:53:22 +01:00
|
|
|
CONFIG += staticlib
|
2017-11-26 13:07:21 +01:00
|
|
|
|
2018-09-18 20:24:54 +02:00
|
|
|
! include( ../common.pri ) {
|
|
|
|
|
error( "Couldn't find the common.pri file!" )
|
|
|
|
|
}
|
2017-12-16 21:42:41 +01:00
|
|
|
|
2018-09-18 20:24:54 +02:00
|
|
|
INCLUDEPATH += C:\Prog\include\pgsql
|
2017-12-09 19:39:37 +01:00
|
|
|
|
2017-11-26 13:07:21 +01:00
|
|
|
|
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
|
|
SOURCES += my_boost_assert_handler.cpp \
|
|
|
|
|
SqlLexer.cpp \
|
|
|
|
|
PasswordManager.cpp \
|
|
|
|
|
CsvWriter.cpp \
|
|
|
|
|
BackupFormatModel.cpp \
|
2017-12-09 10:45:13 +01:00
|
|
|
QueuedBackgroundTask.cpp \
|
|
|
|
|
ExplainTreeModelItem.cpp \
|
2017-12-25 15:32:02 +01:00
|
|
|
jsoncpp.cpp \
|
2018-06-19 19:52:56 +02:00
|
|
|
SqlParser.cpp \
|
|
|
|
|
SqlAstNode.cpp \
|
|
|
|
|
SqlAstSelectList.cpp \
|
|
|
|
|
SqlAstSelectListEntry.cpp \
|
|
|
|
|
SqlAstSelect.cpp \
|
|
|
|
|
SqlAstExpression.cpp
|
2017-11-26 13:07:21 +01:00
|
|
|
|
|
|
|
|
HEADERS += PasswordManager.h \
|
|
|
|
|
SqlLexer.h \
|
|
|
|
|
ScopeGuard.h \
|
|
|
|
|
CsvWriter.h \
|
|
|
|
|
BackupFormatModel.h \
|
|
|
|
|
QueuedBackgroundTask.h \
|
2017-12-09 10:45:13 +01:00
|
|
|
Expected.h \
|
2017-12-09 16:43:28 +01:00
|
|
|
ExplainTreeModelItem.h \
|
2017-12-25 15:32:02 +01:00
|
|
|
json/json.h \
|
2018-02-14 19:18:51 +01:00
|
|
|
TaskControl.h \
|
|
|
|
|
ControllableTask.h \
|
|
|
|
|
RunControllableTask.h \
|
2018-06-19 19:52:56 +02:00
|
|
|
TaskExecutor.h \
|
|
|
|
|
SqlParser.h \
|
|
|
|
|
SqlAstNode.h \
|
|
|
|
|
SqlAstSelectList.h \
|
|
|
|
|
SqlAstSelectListEntry.h \
|
|
|
|
|
SqlAstSelect.h \
|
2018-11-25 09:06:01 +01:00
|
|
|
SqlAstExpression.h \
|
2018-12-15 11:24:58 +01:00
|
|
|
std_utils.h \
|
|
|
|
|
IntegerRange.h
|
2017-11-26 13:07:21 +01:00
|
|
|
|
|
|
|
|
unix {
|
|
|
|
|
target.path = /usr/lib
|
|
|
|
|
INSTALLS += target
|
|
|
|
|
}
|