summaryrefslogtreecommitdiffstats
path: root/examples/qtconcurrent/map
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qtconcurrent/map')
-rw-r--r--examples/qtconcurrent/map/.prev_CMakeLists.txt4
-rw-r--r--examples/qtconcurrent/map/CMakeLists.txt4
2 files changed, 8 insertions, 0 deletions
diff --git a/examples/qtconcurrent/map/.prev_CMakeLists.txt b/examples/qtconcurrent/map/.prev_CMakeLists.txt
index 5ab5b093a4..0e3215c225 100644
--- a/examples/qtconcurrent/map/.prev_CMakeLists.txt
+++ b/examples/qtconcurrent/map/.prev_CMakeLists.txt
@@ -22,6 +22,10 @@ find_package(Qt6 COMPONENTS Concurrent)
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/map/CMakeLists.txt b/examples/qtconcurrent/map/CMakeLists.txt
index 3a977eeaaf..08589f1b3f 100644
--- a/examples/qtconcurrent/map/CMakeLists.txt
+++ b/examples/qtconcurrent/map/CMakeLists.txt
@@ -22,6 +22,10 @@ find_package(Qt6 COMPONENTS Concurrent)
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