mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
add 64bit build support for pdfium on windows
This commit is contained in:
@ -25,8 +25,12 @@ win32 {
|
||||
INCLUDEPATH += ../dependencies/poppler/include/qt5
|
||||
} else {
|
||||
DEFINES += "USE_PDFIUM"
|
||||
LIBS += -L$$PWD../dependencies/pdfium/x86 -lpdfium
|
||||
INCLUDEPATH += $$PWD../dependencies/pdfium/public
|
||||
contains(QMAKE_TARGET.arch, x86_64): {
|
||||
LIBS += -L$$PWD/../dependencies/pdfium/x64 -lpdfium
|
||||
} else {
|
||||
LIBS += -L$$PWD/../dependencies/pdfium/x86 -lpdfium
|
||||
}
|
||||
INCLUDEPATH += ../dependencies/pdfium/public
|
||||
}
|
||||
} else {
|
||||
DEFINES += "NO_PDF"
|
||||
|
Reference in New Issue
Block a user