From 8326a0cca67fb3f84063b138638cc1bddfda5063 Mon Sep 17 00:00:00 2001 From: Kandrashin Denis Date: Wed, 23 May 2012 15:36:53 +0400 Subject: Remove compiler warnings --- fb2edit.pro | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 fb2edit.pro (limited to 'fb2edit.pro') 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 + +} -- cgit v1.2.3