mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
10 lines
291 B
CMake
10 lines
291 B
CMake
|
find_path(LibIntl_INCLUDE_DIRS NAMES libintl.h)
|
||
|
find_library(LibIntl_LIBRARIES NAMES intl libintl)
|
||
|
include(CheckCXXSymbolExists)
|
||
|
check_cxx_symbol_exists(gettext libintl.h LibIntl_SYMBOL_FOUND)
|
||
|
if (LibIntl_SYMBOL_FOUND)
|
||
|
set(LibIntl_FOUND TRUE)
|
||
|
else()
|
||
|
set(LibIntl_FOUND FALSE)
|
||
|
endif()
|