diff options
author | Kai Köhne <kai.koehne@qt.io> | 2022-11-14 14:49:32 +0100 |
---|---|---|
committer | Kai Köhne <kai.koehne@qt.io> | 2022-11-17 19:59:11 +0100 |
commit | bec264c15fe07382009def3c4bbef3f3b689b6eb (patch) | |
tree | 2335b779fc09463522ff5356cd2c152ff64d603f /examples/widgets/mainwindows | |
parent | 9e251d44a79e171f093e89b21215d7372866ef4c (diff) | |
download | qtbase-bec264c15fe07382009def3c4bbef3f3b689b6eb.tar.gz |
Examples: Use Qt6:: to qualify Qt CMake packages
This is what we promote also in the documentation.
Change-Id: If91aebafe861b0c934acbb2c69afd182abc3345d
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/widgets/mainwindows')
6 files changed, 22 insertions, 22 deletions
diff --git a/examples/widgets/mainwindows/application/CMakeLists.txt b/examples/widgets/mainwindows/application/CMakeLists.txt index ab4216ec87..551794651c 100644 --- a/examples/widgets/mainwindows/application/CMakeLists.txt +++ b/examples/widgets/mainwindows/application/CMakeLists.txt @@ -25,9 +25,9 @@ set_target_properties(application PROPERTIES ) target_link_libraries(application PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) # Resources: diff --git a/examples/widgets/mainwindows/dockwidgets/CMakeLists.txt b/examples/widgets/mainwindows/dockwidgets/CMakeLists.txt index d3b9394232..51b9d35da9 100644 --- a/examples/widgets/mainwindows/dockwidgets/CMakeLists.txt +++ b/examples/widgets/mainwindows/dockwidgets/CMakeLists.txt @@ -28,13 +28,13 @@ set_target_properties(dockwidgets PROPERTIES ) target_link_libraries(dockwidgets PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) -if (TARGET Qt::PrintSupport) - target_link_libraries(dockwidgets PUBLIC Qt::PrintSupport) +if (TARGET Qt6::PrintSupport) + target_link_libraries(dockwidgets PUBLIC Qt6::PrintSupport) endif() # Resources: @@ -52,9 +52,9 @@ qt_add_resources(dockwidgets "dockwidgets" ${dockwidgets_resource_files} ) -if(TARGET Qt::PrintSupport) +if(TARGET Qt6::PrintSupport) target_link_libraries(dockwidgets PUBLIC - Qt::PrintSupport + Qt6::PrintSupport ) endif() diff --git a/examples/widgets/mainwindows/mainwindow/CMakeLists.txt b/examples/widgets/mainwindows/mainwindow/CMakeLists.txt index 6d1330884d..fadb55b9b7 100644 --- a/examples/widgets/mainwindows/mainwindow/CMakeLists.txt +++ b/examples/widgets/mainwindows/mainwindow/CMakeLists.txt @@ -27,9 +27,9 @@ set_target_properties(mainwindow PROPERTIES ) target_link_libraries(mainwindow PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) # Resources: diff --git a/examples/widgets/mainwindows/mdi/CMakeLists.txt b/examples/widgets/mainwindows/mdi/CMakeLists.txt index 3f327a3733..3efefae48e 100644 --- a/examples/widgets/mainwindows/mdi/CMakeLists.txt +++ b/examples/widgets/mainwindows/mdi/CMakeLists.txt @@ -26,9 +26,9 @@ set_target_properties(mdi PROPERTIES ) target_link_libraries(mdi PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) # Resources: diff --git a/examples/widgets/mainwindows/menus/CMakeLists.txt b/examples/widgets/mainwindows/menus/CMakeLists.txt index e2dc7a4df4..84224561a6 100644 --- a/examples/widgets/mainwindows/menus/CMakeLists.txt +++ b/examples/widgets/mainwindows/menus/CMakeLists.txt @@ -25,9 +25,9 @@ set_target_properties(menus PROPERTIES ) target_link_libraries(menus PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) install(TARGETS menus diff --git a/examples/widgets/mainwindows/sdi/CMakeLists.txt b/examples/widgets/mainwindows/sdi/CMakeLists.txt index d2205f454a..196d5a2876 100644 --- a/examples/widgets/mainwindows/sdi/CMakeLists.txt +++ b/examples/widgets/mainwindows/sdi/CMakeLists.txt @@ -25,9 +25,9 @@ set_target_properties(sdi PROPERTIES ) target_link_libraries(sdi PUBLIC - Qt::Core - Qt::Gui - Qt::Widgets + Qt6::Core + Qt6::Gui + Qt6::Widgets ) # Resources: |