diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 23:24:37 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 23:41:48 +0100 |
commit | 1fb44676cd583fd9b5d8e4aff4db8d5ad954c2a5 (patch) | |
tree | 6610151e521ec3bac6ae8dad2f8437e181ede964 /README.md | |
parent | c49dac7cd36972571f1b8b60367e336842e13bec (diff) | |
download | rneovim-1fb44676cd583fd9b5d8e4aff4db8d5ad954c2a5.tar.gz rneovim-1fb44676cd583fd9b5d8e4aff4db8d5ad954c2a5.tar.bz2 rneovim-1fb44676cd583fd9b5d8e4aff4db8d5ad954c2a5.zip |
build: avoid CMP0046 "dependency target does not exist" #8128
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -34,11 +34,15 @@ Install from source make CMAKE_BUILD_TYPE=RelWithDebInfo sudo make install -To install to a non-default location, specify `CMAKE_INSTALL_PREFIX`: +To install to a non-default location, set `CMAKE_INSTALL_PREFIX`: make CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=/full/path/" make install +To list all targets: + + cmake --build build --target help + See [the wiki](https://github.com/neovim/neovim/wiki/Building-Neovim) for details. Install from package |