summaryrefslogtreecommitdiffstats
path: root/examples/qtconcurrent
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2021-12-15 16:27:37 +0100
committerKai Köhne <kai.koehne@qt.io>2021-12-17 10:38:49 +0100
commit131681652eb609a19eac963222c553442138ae12 (patch)
tree075278de7806ed2758c826bd32bd9593ed5f1448 /examples/qtconcurrent
parent7cf8ecf4cedc0d85623e6838e01ca9fa5b618a24 (diff)
Examples: Clean up WIN32_EXECUTABLE, MACOSX_BUNDLE properties
Both are FALSE by default, so no point in explicitly setting them to FALSE. In addition, dbus/listnames is a command line tool. No reason to set WIN32_EXECUTABLE, MACOSX_BUNDLE here. Pick-to: 6.3 Change-Id: I99aaf27a0267c5575bd2ee5b6183991fce721f44 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'examples/qtconcurrent')
-rw-r--r--examples/qtconcurrent/map/CMakeLists.txt5
-rw-r--r--examples/qtconcurrent/runfunction/CMakeLists.txt5
-rw-r--r--examples/qtconcurrent/wordcount/CMakeLists.txt5
3 files changed, 0 insertions, 15 deletions
diff --git a/examples/qtconcurrent/map/CMakeLists.txt b/examples/qtconcurrent/map/CMakeLists.txt
index e767a3067c..ca49eb0fd9 100644
--- a/examples/qtconcurrent/map/CMakeLists.txt
+++ b/examples/qtconcurrent/map/CMakeLists.txt
@@ -19,11 +19,6 @@ qt_add_executable(mapdemo
main.cpp
)
-set_target_properties(mapdemo PROPERTIES
- WIN32_EXECUTABLE FALSE
- MACOSX_BUNDLE FALSE
-)
-
target_link_libraries(mapdemo PUBLIC
Qt::Concurrent
Qt::Core
diff --git a/examples/qtconcurrent/runfunction/CMakeLists.txt b/examples/qtconcurrent/runfunction/CMakeLists.txt
index a6e3684f39..0f80b41b4d 100644
--- a/examples/qtconcurrent/runfunction/CMakeLists.txt
+++ b/examples/qtconcurrent/runfunction/CMakeLists.txt
@@ -19,11 +19,6 @@ qt_add_executable(runfunction
main.cpp
)
-set_target_properties(runfunction PROPERTIES
- WIN32_EXECUTABLE FALSE
- MACOSX_BUNDLE FALSE
-)
-
target_link_libraries(runfunction PUBLIC
Qt::Concurrent
Qt::Core
diff --git a/examples/qtconcurrent/wordcount/CMakeLists.txt b/examples/qtconcurrent/wordcount/CMakeLists.txt
index 9a4f4344c6..4fdacf5348 100644
--- a/examples/qtconcurrent/wordcount/CMakeLists.txt
+++ b/examples/qtconcurrent/wordcount/CMakeLists.txt
@@ -19,11 +19,6 @@ qt_add_executable(wordcount
main.cpp
)
-set_target_properties(wordcount PROPERTIES
- WIN32_EXECUTABLE FALSE
- MACOSX_BUNDLE FALSE
-)
-
target_link_libraries(wordcount PUBLIC
Qt::Concurrent
Qt::Core