diff options
author | Kai Köhne <kai.koehne@qt.io> | 2022-11-21 12:03:41 +0100 |
---|---|---|
committer | Kai Köhne <kai.koehne@qt.io> | 2022-11-30 14:48:50 +0100 |
commit | a5de12f0d7dfef64453b7b29c33dc760b3cacec4 (patch) | |
tree | c55549f8c325eb0a3a3eb09c5ac76a31d763fdbd /examples/gui/rasterwindow/CMakeLists.txt | |
parent | d221ea609fdd9f5dc99f520391beddc057373278 (diff) | |
download | qtbase-a5de12f0d7dfef64453b7b29c33dc760b3cacec4.tar.gz |
Examples: Use PRIVATE CMake linkage
We (almost) only build apps, for which PRIVATE linkage makes more sense.
Change-Id: I09a509c3fb33a00cdfdede687b3f95d638f42091
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/gui/rasterwindow/CMakeLists.txt')
-rw-r--r-- | examples/gui/rasterwindow/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gui/rasterwindow/CMakeLists.txt b/examples/gui/rasterwindow/CMakeLists.txt index c09da49779..1a7878cc0a 100644 --- a/examples/gui/rasterwindow/CMakeLists.txt +++ b/examples/gui/rasterwindow/CMakeLists.txt @@ -24,7 +24,7 @@ set_target_properties(rasterwindow PROPERTIES MACOSX_BUNDLE TRUE ) -target_link_libraries(rasterwindow PUBLIC +target_link_libraries(rasterwindow PRIVATE Qt6::Core Qt6::Gui ) |