mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
72cf89bce8
- Cleanup source tree, leaving only files necessary for compilation/testing - Process files through unifdef to remove tons of FEAT_* macros - Process files through uncrustify to normalize source code formatting. - Port the build system to cmake
8 lines
362 B
C
8 lines
362 B
C
#include "${PROJECT_SOURCE_DIR}/src/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}";
|