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

github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKandrashin Denis <mail@lintest.ru>2012-05-23 15:36:53 +0400
committerKandrashin Denis <mail@lintest.ru>2012-05-23 21:20:14 +0400
commit8326a0cca67fb3f84063b138638cc1bddfda5063 (patch)
tree79c771571d8e6502ae62596d29014d63f60b6a7a /fb2edit.pro
parent82a57efb661287e316be5c5e99e54578ddbf9295 (diff)
Remove compiler warnings
Diffstat (limited to 'fb2edit.pro')
-rw-r--r--fb2edit.pro56
1 files changed, 56 insertions, 0 deletions
diff --git a/fb2edit.pro b/fb2edit.pro
new file mode 100644
index 0000000..9cb42e3
--- /dev/null
+++ b/fb2edit.pro
@@ -0,0 +1,56 @@
+HEADERS = \
+ source/fb2app.h \
+ source/fb2head.h \
+ source/fb2main.h \
+ source/fb2read.h \
+ source/fb2tree.h \
+ source/fb2save.h \
+ source/fb2view.h \
+ source/fb2xml.h \
+ source/fb2xml2.h
+
+SOURCES = \
+ source/fb2app.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 = \
+ 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
+
+}