diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2022-03-20 12:57:52 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2022-03-24 16:24:38 +0000 |
commit | a720a6380ca75ec23e0635cc8ae47ee4b9508be0 (patch) | |
tree | c9e44d079d7c392b3f7b2beeeea748236f2de6c8 /modules/ECMAddQch.cmake | |
parent | 4047d1a676ac6133f357d6aca63f3093381b0986 (diff) | |
download | extra-cmake-modules-a720a6380ca75ec23e0635cc8ae47ee4b9508be0.tar.gz extra-cmake-modules-a720a6380ca75ec23e0635cc8ae47ee4b9508be0.tar.bz2 |
Port from ECMQueryQmake to ECMQueryQt
Continuation of commit 4e47b053c9d799.
All unittests still pass.
Diffstat (limited to 'modules/ECMAddQch.cmake')
-rw-r--r-- | modules/ECMAddQch.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ECMAddQch.cmake b/modules/ECMAddQch.cmake index f494c543..bd8116a6 100644 --- a/modules/ECMAddQch.cmake +++ b/modules/ECMAddQch.cmake @@ -258,7 +258,7 @@ Since 5.36.0. include(CMakeParseArguments) include(${CMAKE_CURRENT_LIST_DIR}/../modules/QtVersionOption.cmake) -include(ECMQueryQmake) +include(ECMQueryQt) # Helper method: adding the LINK_QCHS property to a Qt QCH targets, from module base names ("Core" etc.) @@ -282,7 +282,7 @@ function(_ecm_ensure_qt_qch_targets) # get Qt version, if any find_package(Qt${QT_MAJOR_VERSION}Core CONFIG QUIET) # lookup tag files - query_qmake(qt_docs_dir QT_INSTALL_DOCS TRY) + ecm_query_qt(qt_docs_dir QT_INSTALL_DOCS TRY) find_path(_qtcoreTagsPath qtcore/qtcore.tags PATHS ${qt_docs_dir} |