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: 24a2a33a9781982df48285c498cb7504753bbc15 (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
HEADERS = \
    source/fb2save.h \
    source/fb2xml.h \
    source/fb2xml2.h \
    source/fb2app.hpp \
    source/fb2code.hpp \
    source/fb2head.hpp \
    source/fb2main.hpp \
    source/fb2read.hpp \
    source/fb2tree.hpp \
    source/fb2view.hpp

SOURCES = \
    source/fb2app.cpp \
    source/fb2code.cpp \
    source/fb2head.cpp \
    source/fb2main.cpp \
    source/fb2read.cpp \
    source/fb2tree.cpp \
    source/fb2save.cpp \
    source/fb2view.cpp \
    source/fb2xml.cpp \
    source/fb2xml2.cpp

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

TARGET = fb2edit

TRANSLATIONS = source/ts/ru.ts

VERSION = 0.01.1

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

LIBS += -lqscintilla2

OTHER_FILES += \
    source/res/style.css \
    source/res/blank.fb2

if (win32) {

    INCLUDEPATH += ../libxml2/include
    INCLUDEPATH += ../iconv/include

    LIBS += -L../libxml2/lib -llibxml2
    LIBS += -L../iconv/lib -liconv
    LIBS += -L../zlib/lib -lzlib

} else {

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

}