diff options
Diffstat (limited to 'examples/qtconcurrent/map/map.pro')
-rw-r--r-- | examples/qtconcurrent/map/map.pro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/qtconcurrent/map/map.pro b/examples/qtconcurrent/map/map.pro new file mode 100644 index 0000000..cc80704 --- /dev/null +++ b/examples/qtconcurrent/map/map.pro @@ -0,0 +1,16 @@ +TEMPLATE = app +TARGET = mapdemo +DEPENDPATH += . +INCLUDEPATH += . + +# Input +SOURCES += main.cpp +CONFIG += console + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/qtconcurrent/map +sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES *.pro *.png +sources.path = $$[QT_INSTALL_EXAMPLES]/qtconcurrent/map +INSTALLS += target sources + +include($$QT_SOURCE_TREE/examples/examplebase.pri) |