blob: ff86d2460fe0a3340da319dcbd48684f42090f79 (
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
|
#-------------------------------------------------
#
# Project created by QtCreator 2014-06-23T01:06:41
#
#-------------------------------------------------
include($$PWD/../../SQLiteStudio3/plugins.pri)
TARGET = PdfExport
TEMPLATE = lib
DEFINES += PDFEXPORT_LIBRARY
SOURCES += pdfexport.cpp
HEADERS += pdfexport.h\
pdfexport_global.h
OTHER_FILES += \
pdfexport.json
FORMS += \
pdfexport.ui
RESOURCES += \
pdfexport.qrc
TRANSLATIONS += PdfExport_zh_CN.ts \
PdfExport_sk.ts \
PdfExport_de.ts \
PdfExport_ru.ts \
PdfExport_pt_BR.ts \
PdfExport_fr.ts \
PdfExport_es.ts \
PdfExport_pl.ts
|