Fixed YACReaderLibrary compilation under Qt5 (untested at runtime)

TODO fix YACReader compilation under Qt5
     update poppler
     update server
This commit is contained in:
Luis Ángel San Martín
2013-10-08 23:00:16 +02:00
parent 6a6c902803
commit d5a35de96c
11 changed files with 53 additions and 17 deletions

View File

@ -13,7 +13,7 @@ INCLUDEPATH += ../common \
./comic_vine \
./comic_vine/model
DEFINES += SERVER_RELEASE
DEFINES += SERVER_RELEASE NOMINMAX
win32 {
INCLUDEPATH += ../dependencies/poppler/include
@ -143,6 +143,12 @@ TRANSLATIONS = yacreaderlibrary_es.ts \
yacreaderlibrary_fr.ts \
yacreaderlibrary_nl.ts \
yacreaderlibrary_source.ts
Release:DESTDIR = ../release
Debug:DESTDIR = ../debug
contains(QT_MINOR_VERSION, 5) {
Release:DESTDIR = ../release5
Debug:DESTDIR = ../debug5
}
!contains(QT_MINOR_VERSION, 5)
{
Release:DESTDIR = ../release
Debug:DESTDIR = ../debug
}