Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fb2edit.pro - github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc8f5f824bbbb70394c5c3750247279947296f38 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
HEADERS = \
    source/fb2xml.h \
    source/fb2xml2.h \
    source/fb2app.hpp \
    source/fb2code.hpp \
    source/fb2head.hpp \
    source/fb2main.hpp \
    source/fb2read.hpp \
    source/fb2temp.hpp \
    source/fb2tree.hpp \
    source/fb2save.hpp \
    source/fb2dlgs.hpp \
    source/fb2html.h \
    source/fb2text.hpp \
    source/fb2utils.h

SOURCES = \
    source/fb2app.cpp \
    source/fb2code.cpp \
    source/fb2head.cpp \
    source/fb2main.cpp \
    source/fb2read.cpp \
    source/fb2save.cpp \
    source/fb2temp.cpp \
    source/fb2tree.cpp \
    source/fb2xml.cpp \
    source/fb2xml2.cpp \
    source/fb2utils.cpp \
    source/fb2dlgs.cpp \
    source/fb2html.cpp \
    source/fb2text.cpp

RESOURCES = \
    3rdparty/gnome/gnome.qrc \
    source/res/fb2edit.qrc \
    source/js/javascript.qrc \
    3rdparty/fb2/fb2.qrc

TARGET = fb2edit

TRANSLATIONS = source/ts/ru.ts

QT += xml
QT += webkit
QT += network

OTHER_FILES += \
    source/res/style.css \
    source/res/blank.fb2 \
    source/js/export.js \
    source/js/set_cursor.js \
    source/js/get_status.js \
    source/js/insert_title.js \
    CMakeLists.txt \
    source/js/new_section1.js \
    source/js/section_get.js \
    source/js/section_new.js \
    source/js/location.js

if (unix) {

    DEFINES += FB2_USE_LIBXML2
    INCLUDEPATH += /usr/include/libxml2
    LIBS += -lxml2

}

FORMS += \
    source/fb2find.ui \
    source/fb2setup.ui