2011-04-27 10:05:43 +00:00
|
|
|
QT -= gui
|
2012-02-03 13:17:26 +00:00
|
|
|
QT += concurrent
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
CONFIG += console
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
SOURCES += helloconcurrent.cpp
|
|
|
|
|
|
|
|
# install
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tutorials/threads/helloconcurrent
|
|
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS helloconcurrent.pro
|
|
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tutorials/threads/helloconcurrent
|
|
|
|
INSTALLS += target sources
|
|
|
|
|
|
|
|
|
|
|
|
|