qt5base-lts/examples/qtconcurrent/qtconcurrent.pro
Rohan McGovern 0feb264674 examples: fixed compile with -no-widgets
Disable a few examples depending on widgets which had previously been
missed.

Change-Id: Ic9c7cda94f690ee9d541c742997b7db9ace40fe0
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
2012-07-27 03:27:27 +02:00

24 lines
553 B
Prolog

TEMPLATE = subdirs
SUBDIRS = imagescaling \
map \
runfunction \
wordcount
!wince* {
SUBDIRS += progressdialog
}
contains(QT_CONFIG, no-widgets) {
SUBDIRS -= \
imagescaling \
progressdialog \
runfunction \
wordcount
}
# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/qtconcurrent
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS qtconcurrent.pro README
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/qtconcurrent
INSTALLS += target sources