mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
a6734844ca
- 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.
8 lines
367 B
C
8 lines
367 B
C
#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}";
|
|
char_u *all_lflags = (char_u *)"${LINKER_FLAGS}";
|
|
char_u *compiled_user = (char_u *)"${USERNAME}";
|
|
char_u *compiled_sys = (char_u *)"${HOSTNAME}";
|