12dcab77a7
To fix a build problem when plugandpaint is not built with qt src. QT_BUILD_TREE is not set in this case. We use a relative path instead. Task-number: QTBUG-28261 Change-Id: I2456614070f0849ba9400fbe4b76172189e3925f Reviewed-by: J-P Nurmi <jpnurmi@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
26 lines
733 B
Prolog
26 lines
733 B
Prolog
#! [0]
|
|
HEADERS = interfaces.h \
|
|
mainwindow.h \
|
|
paintarea.h \
|
|
plugindialog.h
|
|
SOURCES = main.cpp \
|
|
mainwindow.cpp \
|
|
paintarea.cpp \
|
|
plugindialog.cpp
|
|
|
|
LIBS = -Lplugins -lpnp_basictools
|
|
|
|
if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
|
|
mac:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)_debug
|
|
win32:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)d
|
|
}
|
|
#! [0]
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS plugandpaint.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint
|
|
INSTALLS += target sources
|
|
|
|
QT += widgets
|