diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-04-17 18:08:53 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-04-18 09:21:03 +0200 |
commit | e10f9151dc62e33b8a818f43c8f404daf28e6012 (patch) | |
tree | 12de97783ce026298561487d5ba514f13eb1a1a9 /cmake | |
parent | 1fb44ba8356e06b9d90a43599c4526ad4d625618 (diff) | |
download | rneovim-e10f9151dc62e33b8a818f43c8f404daf28e6012.tar.gz rneovim-e10f9151dc62e33b8a818f43c8f404daf28e6012.tar.bz2 rneovim-e10f9151dc62e33b8a818f43c8f404daf28e6012.zip |
treesitter: remove utf8proc dependency
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindUTF8PROC.cmake | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cmake/FindUTF8PROC.cmake b/cmake/FindUTF8PROC.cmake deleted file mode 100644 index fdb462b779..0000000000 --- a/cmake/FindUTF8PROC.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# - Try to find utf8proc -# Once done this will define -# UTF8PROC_FOUND - System has utf8proc -# UTF8PROC_INCLUDE_DIRS - The utf8proc include directories -# UTF8PROC_LIBRARIES - The libraries needed to use utf8proc - -include(LibFindMacros) - -set(UTF8PROC_NAMES utf8proc) -if(MSVC) - # "utf8proc_static" is used for MSVC (when built statically from third-party). - # https://github.com/JuliaStrings/utf8proc/commit/0975bf9b6. - list(APPEND UTF8PROC_NAMES utf8proc_static) -endif() -libfind_pkg_detect(UTF8PROC utf8proc FIND_PATH utf8proc.h FIND_LIBRARY ${UTF8PROC_NAMES}) -libfind_process(UTF8PROC REQUIRED) |