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.
This commit is contained in:
Eliseo Martínez
2014-05-12 15:50:37 +02:00
parent da51dc9cf2
commit a6734844ca
5 changed files with 9 additions and 9 deletions

View File

@@ -95,11 +95,11 @@ output:write([[
#include <stdint.h>
#include <msgpack.h>
#include "os/msgpack_rpc.h"
#include "nvim/os/msgpack_rpc.h"
]])
for i = 1, #headers do
output:write('\n#include "'..headers[i]..'"')
output:write('\n#include "nvim/'..headers[i]..'"')
end
output:write([[