diff options
author | Marco Hinz <mh.codebro+github@gmail.com> | 2018-04-16 21:21:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 21:21:44 +0200 |
commit | 9a1f57b488778bf8b365ae118153638609f4494d (patch) | |
tree | e3fa0682650cfe190940f538cc53dabdc2514e7f | |
parent | ed6a113804a21022072e0b27da22f36bbcc5443b (diff) | |
download | rneovim-9a1f57b488778bf8b365ae118153638609f4494d.tar.gz rneovim-9a1f57b488778bf8b365ae118153638609f4494d.tar.bz2 rneovim-9a1f57b488778bf8b365ae118153638609f4494d.zip |
contrib: fix local.mk.example (#8286)
We have two ways to disable third-party/
1. make USE_BUNDLED_DEPS=OFF
2. cmake USE_BUNDLED=OFF
The example used the make option in a cmake context.
-rw-r--r-- | contrib/local.mk.example | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example index 23fe11622b..c347eb9e0d 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -36,7 +36,6 @@ # them. # # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_BUSTED=OFF -# DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_DEPS=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_JEMALLOC=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBTERMKEY=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBUV=OFF @@ -45,6 +44,10 @@ # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LUAROCKS=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_MSGPACK=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_UNIBILIUM=OFF +# +# Or disable all bundled dependencies at once. +# +# DEPS_CMAKE_FLAGS += -DUSE_BUNDLED=OFF # By default, bundled libraries are statically linked to nvim. # This has no effect for non-bundled deps, which are always dynamically linked. |