mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
4c64cbe99f
Only the most important variables should be shown by default.
24 lines
636 B
CMake
24 lines
636 B
CMake
# TODO(dundargoc): FindIconv is shipped by default on cmake version 3.11+. This
|
|
# file can be removed once we decide to upgrade minimum cmake version.
|
|
|
|
# - Try to find iconv
|
|
# Once done, this will define
|
|
#
|
|
# Iconv_FOUND - system has iconv
|
|
# Iconv_INCLUDE_DIRS - the iconv include directories
|
|
# Iconv_LIBRARIES - link these to use iconv
|
|
|
|
include(LibFindMacros)
|
|
|
|
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
|
|
find_library(ICONV_LIBRARY NAMES iconv libiconv)
|
|
|
|
set(Iconv_PROCESS_INCLUDES ICONV_INCLUDE_DIR)
|
|
if(ICONV_LIBRARY)
|
|
set(Iconv_PROCESS_LIBS ICONV_LIBRARY)
|
|
endif()
|
|
|
|
libfind_process(Iconv)
|
|
|
|
mark_as_advanced(ICONV_LIBRARY)
|