diff options
author | dundargoc <gocdundar@gmail.com> | 2024-06-12 17:04:58 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-06-28 19:47:39 +0200 |
commit | 32e16cb0b6b046ba45d3e14c0fdb0383ad8bee1e (patch) | |
tree | d5d4af25bf0bbc19bcdbb66e2d0e79b9102ef26f /cmake.deps/cmake | |
parent | 46187117c9464dd6c09eae8e47bb279d72a01038 (diff) | |
download | rneovim-32e16cb0b6b046ba45d3e14c0fdb0383ad8bee1e.tar.gz rneovim-32e16cb0b6b046ba45d3e14c0fdb0383ad8bee1e.tar.bz2 rneovim-32e16cb0b6b046ba45d3e14c0fdb0383ad8bee1e.zip |
build: add utf8proc as dependency
utf8proc contains all the data which is currently in
unicode_tables.generated.h internally, but in quite a different format.
Ideally unicode_tables.generated.h should be removed as well so we rely
solely on utf8proc. We want to avoid a situation where the possibility
of unicode mismatch occurs, e.g a distro using both unicode 12 and
unicode 13.
Diffstat (limited to 'cmake.deps/cmake')
-rw-r--r-- | cmake.deps/cmake/BuildUTF8proc.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake.deps/cmake/BuildUTF8proc.cmake b/cmake.deps/cmake/BuildUTF8proc.cmake new file mode 100644 index 0000000000..9445e615f0 --- /dev/null +++ b/cmake.deps/cmake/BuildUTF8proc.cmake @@ -0,0 +1,5 @@ +get_externalproject_options(utf8proc ${DEPS_IGNORE_SHA}) +ExternalProject_Add(utf8proc + DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/utf8proc + CMAKE_ARGS ${DEPS_CMAKE_ARGS} + ${EXTERNALPROJECT_OPTIONS}) |