blob: 8ac70d9685bf9a8e826888d5e90d0098bf0e32d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# common to plugin and built-in forms
INCLUDEPATH *= $$PWD
HEADERS += $$PWD/qtiffhandler.h
SOURCES += $$PWD/qtiffhandler.cpp
contains(QT_CONFIG, system-tiff) {
if(unix|win32-g++*):LIBS += -ltiff
else:win32: LIBS += libtiff.lib
} else {
include($$PWD/../../3rdparty/libtiff.pri)
}
|