diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-03-02 10:22:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 10:22:41 +0100 |
commit | a0292b4e5f106482edc5623eef85aa48e2e55bb7 (patch) | |
tree | b6bb2056bbcc34217e7edfc88cca4f494a4f2b05 /cmake/FindLibIntl.cmake | |
parent | fb1db80f5ab707e188be3c60539fa38eaf996f24 (diff) | |
download | rneovim-a0292b4e5f106482edc5623eef85aa48e2e55bb7.tar.gz rneovim-a0292b4e5f106482edc5623eef85aa48e2e55bb7.tar.bz2 rneovim-a0292b4e5f106482edc5623eef85aa48e2e55bb7.zip |
build: remove libfindmacros library (#22423)
Large parts the library weren't being used, and the parts that were was overly
abstracted for our use case. Additionally, part of its use case was to abstract
pkgconfig boilerplate, which is no longer needed as pkgconfig has been removed
in favor of relying on cmake alone in 09118052cee5aef978d6075db5287c1b6c27381a.
Diffstat (limited to 'cmake/FindLibIntl.cmake')
-rw-r--r-- | cmake/FindLibIntl.cmake | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/cmake/FindLibIntl.cmake b/cmake/FindLibIntl.cmake index d78b39ab40..8b512e5a7e 100644 --- a/cmake/FindLibIntl.cmake +++ b/cmake/FindLibIntl.cmake @@ -1,13 +1,5 @@ -# - Try to find libintl -# Once done, this will define -# -# LibIntl_FOUND - system has libintl -# LibIntl_INCLUDE_DIRS - the libintl include directories -# LibIntl_LIBRARIES - link these to use libintl - include(CheckCSourceCompiles) include(CheckVariableExists) -include(LibFindMacros) # Append custom gettext path to CMAKE_PREFIX_PATH # if installed via Mac Homebrew @@ -74,18 +66,15 @@ if (LibIntl_LIBRARY) list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES "${LibIntl_LIBRARY}") endif() +set(REQUIRED_VARIABLES LibIntl_LIBRARY LIBTERMKEY_INCLUDE_DIR) if (HAVE_WORKING_LIBINTL) # On some systems (linux+glibc) libintl is passively available. # If HAVE_WORKING_LIBINTL then we consider the requirement satisfied. - # Unset REQUIRED so that libfind_process(LibIntl) can proceed. - if(LibIntl_FIND_REQUIRED) - unset(LibIntl_FIND_REQUIRED) - endif() - set(LibIntl_FIND_QUIETLY ON) + unset(REQUIRED_VARIABLES) check_variable_exists(_nl_msg_cat_cntr HAVE_NL_MSG_CAT_CNTR) endif() -set(LibIntl_PROCESS_INCLUDES LibIntl_INCLUDE_DIR) -set(LibIntl_PROCESS_LIBS LibIntl_LIBRARY) -libfind_process(LibIntl) +find_package_handle_standard_args(LibIntl DEFAULT_MSG + ${REQUIRED_VARIABLES}) +mark_as_advanced(LIBTERMKEY_INCLUDE_DIR LIBTERMKEY_LIBRARY) |