mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Mark Intl cmake package as quiet
This suppresses not-very-interesting messages from CMake about whether Intl was found or not. Fixes #7091
This commit is contained in:
parent
783a895b11
commit
971f108bda
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ include(FeatureSummary)
|
||||||
|
|
||||||
option(WITH_GETTEXT "translate messages if gettext is available" ON)
|
option(WITH_GETTEXT "translate messages if gettext is available" ON)
|
||||||
if(WITH_GETTEXT)
|
if(WITH_GETTEXT)
|
||||||
find_package(Intl)
|
find_package(Intl QUIET)
|
||||||
find_package(Gettext)
|
find_package(Gettext)
|
||||||
if(GETTEXT_FOUND)
|
if(GETTEXT_FOUND)
|
||||||
set(HAVE_GETTEXT 1)
|
set(HAVE_GETTEXT 1)
|
||||||
|
|
Loading…
Reference in a new issue