| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
CMAKE_BUILD_TYPE is ignored for multi-config generators and creates a
warning that it's unused.
|
|
|
|
|
| |
This will prevent warnings of the type "ignoring unknown option '-fPIC'"
when using MSVC.
|
|
|
|
|
| |
This removes cmake policy warning for CMP0053 on windows and ensures the
build works correctly for newer cmake policies.
|
|
|
| |
Co-authored-by: Daniel Hahler <git@thequod.de>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Use the same logic for both deps (including LuaJIT, for which setting
this variable is mandatory) and Nvim: either the eponymous environment
variable if set, or the current software version if not.
Removes annoying warnings when building locally on macOS.
|
|
|
|
|
| |
The minimum version for the main project was bumped in 035d82e0d3.
Align cmake.deps to the same version for consistency.
|
| |
|
| |
|
| |
|
| |
|
|
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/)
|