blob: 173b5fc9d9f5bc620f875e6716813293f3f76e31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#-------------------------------------------------
#
# Project created by QtCreator 2014-04-03T18:21:00
#
#-------------------------------------------------
QT -= gui
include($$PWD/../../SQLiteStudio3/plugins.pri)
TARGET = SqlExport
TEMPLATE = lib
DEFINES += SQLEXPORT_LIBRARY
SOURCES += sqlexport.cpp
HEADERS += sqlexport.h\
sqlexport_global.h
FORMS += \
SqlExportQuery.ui \
SqlExportCommon.ui
OTHER_FILES += \
sqlexport.json
RESOURCES += \
sqlexport.qrc
|