blob: 93e4af9d52caf6de9083d0ceb12e075df2ac63ee (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#-------------------------------------------------
#
# 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
TRANSLATIONS += SqlExport_ro_RO.ts \
SqlExport_de.ts \
SqlExport_it.ts \
SqlExport_zh_CN.ts \
SqlExport_sk.ts \
SqlExport_ru.ts \
SqlExport_pt_BR.ts \
SqlExport_fr.ts \
SqlExport_es.ts \
SqlExport_pl.ts
|