diff options
author | Eike Ziller <[email protected]> | 2022-12-20 17:31:22 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2023-01-05 10:13:16 +0000 |
commit | 55fa109b5935725e8f4c0b1bbd286017b6f52979 (patch) | |
tree | c329d39e3b2f2bc8a899e2f1b263cf22ca91bacf /src/libs/qmlpuppetcommunication | |
parent | 894685d50132d5d3f9785df72aa38d1b4a7d7b8d (diff) |
CMake build: Use version-less Qt targets
Since we do not support Qt < 5.15 anymore, and as a first step
for getting rid of our special FindQt5.cmake.
Change-Id: Icc5dbaf9b0a3a622b1f609ff114b9decb6d2856c
Reviewed-by: <[email protected]>
Reviewed-by: Cristian Adam <[email protected]>
Diffstat (limited to 'src/libs/qmlpuppetcommunication')
-rw-r--r-- | src/libs/qmlpuppetcommunication/QmlPuppetCommunication.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmlpuppetcommunication/QmlPuppetCommunication.cmake b/src/libs/qmlpuppetcommunication/QmlPuppetCommunication.cmake index 3d61bd6606f..2858a39fa9a 100644 --- a/src/libs/qmlpuppetcommunication/QmlPuppetCommunication.cmake +++ b/src/libs/qmlpuppetcommunication/QmlPuppetCommunication.cmake @@ -1,6 +1,6 @@ add_qtc_library(QmlPuppetCommunication STATIC PROPERTIES AUTOUIC OFF - DEPENDS Qt5::Core Qt5::CorePrivate Qt5::Gui + DEPENDS Qt::Core Qt::CorePrivate Qt::Gui ) extend_qtc_library(QmlPuppetCommunication |