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:
ridiculousfish 2020-06-06 18:56:37 -07:00
parent 783a895b11
commit 971f108bda

View file

@ -4,7 +4,7 @@ include(FeatureSummary)
option(WITH_GETTEXT "translate messages if gettext is available" ON)
if(WITH_GETTEXT)
find_package(Intl)
find_package(Intl QUIET)
find_package(Gettext)
if(GETTEXT_FOUND)
set(HAVE_GETTEXT 1)