diff options
author | Adriaan de Groot <groot@kde.org> | 2017-01-04 11:19:14 +0100 |
---|---|---|
committer | Adriaan de Groot <groot@kde.org> | 2017-01-04 15:15:11 +0100 |
commit | 738972a9a29a429592fe7e375ff7c550d7c596d5 (patch) | |
tree | 948584e58a76882ec578856c896d41b5c88525a3 /find-modules | |
parent | 4a986d8db8e9b594679b008fd70b818ef2ad94a5 (diff) | |
download | extra-cmake-modules-738972a9a29a429592fe7e375ff7c550d7c596d5.tar.gz extra-cmake-modules-738972a9a29a429592fe7e375ff7c550d7c596d5.tar.bz2 |
Fix message when searching for libclang.
Summary: Cut-and-paste-o from the Python detection code.
Reviewers: #frameworks, skelly, apol
Reviewed By: apol
Subscribers: #buildsystem
Tags: #frameworks, #buildsystem
Differential Revision: https://phabricator.kde.org/D3952
Diffstat (limited to 'find-modules')
-rw-r--r-- | find-modules/FindPythonModuleGeneration.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/find-modules/FindPythonModuleGeneration.cmake b/find-modules/FindPythonModuleGeneration.cmake index 0a857a24..ed4f4a6e 100644 --- a/find-modules/FindPythonModuleGeneration.cmake +++ b/find-modules/FindPythonModuleGeneration.cmake @@ -185,7 +185,7 @@ if (NOT libclang_LIBRARY) find_library(libclang_LIBRARY clang-3.${_LIBCLANG3_MAX_VERSION}) if (libclang_LIBRARY) - message(FATAL_ERROR "The max python version in ${CMAKE_FIND_PACKAGE_NAME} must be updated.") + message(FATAL_ERROR "The max libclang-3 version in ${CMAKE_FIND_PACKAGE_NAME} must be updated.") endif() set(_LIBCLANG3_FIND_VERSION ${_LIBCLANG3_MAX_VERSION}) |