diff options
| author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 15:50:37 +0200 |
|---|---|---|
| committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
| commit | a6734844ca88d2a85de6be10b60e75d48f64747f (patch) | |
| tree | b24866559a7fc2bbc064f4ee1b43ac2f07672407 /config | |
| parent | da51dc9cf202772f60bd2da975dbef257bd9237c (diff) | |
| download | rneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.tar.gz rneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.tar.bz2 rneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.zip | |
Introduce nvim namespace: Fix build process.
- Leave src as include dir (for includes to recognize 'nvim/' prefix).
- Change subdirectory from src to src/nvim.
- Fix msgpack generation.
- Fix some other paths to new locations.
Diffstat (limited to 'config')
| -rw-r--r-- | config/pathdef.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/pathdef.c.in b/config/pathdef.c.in index 6ba5358689..b7b4a980d6 100644 --- a/config/pathdef.c.in +++ b/config/pathdef.c.in @@ -1,4 +1,4 @@ -#include "${PROJECT_SOURCE_DIR}/src/vim.h" +#include "${PROJECT_SOURCE_DIR}/src/nvim/vim.h" char_u *default_vim_dir = (char_u *)"${CMAKE_INSTALL_PREFIX}/share/vim"; char_u *default_vimruntime_dir = (char_u *)""; char_u *all_cflags = (char_u *)"${COMPILER_FLAGS}"; |