From 397b3725176780d8888f8499cac0127dbb7df2c7 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Mon, 26 Oct 2020 16:22:32 +0100 Subject: CMake: Regenerate examples to set the WIN32_EXECUTABLE property As well as the MACOSX_BUNDLE properties as necessary. Task-number: QTBUG-87664 Task-number: QTBUG-86827 Change-Id: I7677449a26d51fa853bd67bab6b3b61afbd2b12f Reviewed-by: Joerg Bornemann --- examples/sql/books/CMakeLists.txt | 4 ++++ examples/sql/cachedtable/CMakeLists.txt | 4 ++++ examples/sql/drilldown/CMakeLists.txt | 4 ++++ examples/sql/masterdetail/CMakeLists.txt | 4 ++++ examples/sql/querymodel/CMakeLists.txt | 4 ++++ examples/sql/relationaltablemodel/CMakeLists.txt | 4 ++++ examples/sql/sqlbrowser/CMakeLists.txt | 4 ++++ examples/sql/sqlwidgetmapper/CMakeLists.txt | 4 ++++ examples/sql/tablemodel/CMakeLists.txt | 4 ++++ 9 files changed, 36 insertions(+) (limited to 'examples/sql') diff --git a/examples/sql/books/CMakeLists.txt b/examples/sql/books/CMakeLists.txt index 3787ee758b..7595f3fd82 100644 --- a/examples/sql/books/CMakeLists.txt +++ b/examples/sql/books/CMakeLists.txt @@ -26,6 +26,10 @@ qt_add_executable(books initdb.h main.cpp ) +set_target_properties(books PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_include_directories(books PUBLIC . ) diff --git a/examples/sql/cachedtable/CMakeLists.txt b/examples/sql/cachedtable/CMakeLists.txt index 4806ef2196..7c5af62005 100644 --- a/examples/sql/cachedtable/CMakeLists.txt +++ b/examples/sql/cachedtable/CMakeLists.txt @@ -25,6 +25,10 @@ qt_add_executable(cachedtable main.cpp tableeditor.cpp tableeditor.h ) +set_target_properties(cachedtable PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(cachedtable PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/drilldown/CMakeLists.txt b/examples/sql/drilldown/CMakeLists.txt index b27e6c4052..ace085e6ac 100644 --- a/examples/sql/drilldown/CMakeLists.txt +++ b/examples/sql/drilldown/CMakeLists.txt @@ -27,6 +27,10 @@ qt_add_executable(drilldown main.cpp view.cpp view.h ) +set_target_properties(drilldown PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(drilldown PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/masterdetail/CMakeLists.txt b/examples/sql/masterdetail/CMakeLists.txt index 8a9a6c4d7d..1a66c81b9c 100644 --- a/examples/sql/masterdetail/CMakeLists.txt +++ b/examples/sql/masterdetail/CMakeLists.txt @@ -27,6 +27,10 @@ qt_add_executable(masterdetail main.cpp mainwindow.cpp mainwindow.h ) +set_target_properties(masterdetail PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(masterdetail PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/querymodel/CMakeLists.txt b/examples/sql/querymodel/CMakeLists.txt index 877ccabf60..8320ac917d 100644 --- a/examples/sql/querymodel/CMakeLists.txt +++ b/examples/sql/querymodel/CMakeLists.txt @@ -26,6 +26,10 @@ qt_add_executable(querymodel editablesqlmodel.cpp editablesqlmodel.h main.cpp ) +set_target_properties(querymodel PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(querymodel PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/relationaltablemodel/CMakeLists.txt b/examples/sql/relationaltablemodel/CMakeLists.txt index a0a7ca4d03..63557fba88 100644 --- a/examples/sql/relationaltablemodel/CMakeLists.txt +++ b/examples/sql/relationaltablemodel/CMakeLists.txt @@ -24,6 +24,10 @@ qt_add_executable(relationaltablemodel ../connection.h relationaltablemodel.cpp ) +set_target_properties(relationaltablemodel PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(relationaltablemodel PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/sqlbrowser/CMakeLists.txt b/examples/sql/sqlbrowser/CMakeLists.txt index f027e6fdbf..260288b9c0 100644 --- a/examples/sql/sqlbrowser/CMakeLists.txt +++ b/examples/sql/sqlbrowser/CMakeLists.txt @@ -27,6 +27,10 @@ qt_add_executable(sqlbrowser main.cpp qsqlconnectiondialog.cpp qsqlconnectiondialog.h qsqlconnectiondialog.ui ) +set_target_properties(sqlbrowser PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(sqlbrowser PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/sqlwidgetmapper/CMakeLists.txt b/examples/sql/sqlwidgetmapper/CMakeLists.txt index 95d3e4c7e7..24b563a2a3 100644 --- a/examples/sql/sqlwidgetmapper/CMakeLists.txt +++ b/examples/sql/sqlwidgetmapper/CMakeLists.txt @@ -24,6 +24,10 @@ qt_add_executable(sqlwidgetmapper main.cpp window.cpp window.h ) +set_target_properties(sqlwidgetmapper PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(sqlwidgetmapper PUBLIC Qt::Core Qt::Gui diff --git a/examples/sql/tablemodel/CMakeLists.txt b/examples/sql/tablemodel/CMakeLists.txt index 4136592493..7dd042adb7 100644 --- a/examples/sql/tablemodel/CMakeLists.txt +++ b/examples/sql/tablemodel/CMakeLists.txt @@ -24,6 +24,10 @@ qt_add_executable(tablemodel ../connection.h tablemodel.cpp ) +set_target_properties(tablemodel PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) target_link_libraries(tablemodel PUBLIC Qt::Core Qt::Gui -- cgit v1.2.3