mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +00:00
build: rename build-related dirs
Problem: Dirs "config", "packaging", and "third-party" are all closely related but this is not obvious from the layout. This adds friction for new contributors. Solution: - rename config/ to cmake.config/ - rename test/config/ to test/cmakeconfig/ because it is used in Lua tests: require('test.cmakeconfig.paths'). - rename packaging/ to cmake.packaging/ - rename third-party/ to cmake.deps/ (parallel with .deps/)
This commit is contained in:
@@ -2,7 +2,7 @@ local ffi = require('ffi')
|
||||
local formatc = require('test.unit.formatc')
|
||||
local Set = require('test.unit.set')
|
||||
local Preprocess = require('test.unit.preprocess')
|
||||
local Paths = require('test.config.paths')
|
||||
local Paths = require('test.cmakeconfig.paths')
|
||||
local global_helpers = require('test.helpers')
|
||||
local assert = require('luassert')
|
||||
local say = require('say')
|
||||
|
Reference in New Issue
Block a user