You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
597 B
Prolog
37 lines
597 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-11-18T11:56:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui sql
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = dMySQL
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
SOURCES += \
|
|
cmysqlplugin.cpp \
|
|
cconfigdialog.cpp
|
|
|
|
HEADERS += \
|
|
cmysqlplugin.h \
|
|
cconfigdialog.h
|
|
OTHER_FILES += dMySQL.json
|
|
|
|
DESTDIR = ../bin/plugins
|
|
INCLUDEPATH += ../Kooky
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
}
|
|
|
|
DISTFILES += \
|
|
dMySQL.json
|
|
|
|
FORMS += \
|
|
cconfigdialog.ui
|