aboutsummaryrefslogtreecommitdiff
path: root/cmake.deps
Commit message (Collapse)AuthorAge
* build: only use CMAKE_BUILD_TYPE for single-config generatorsdundargoc2022-08-13
| | | | | CMAKE_BUILD_TYPE is ignored for multi-config generators and creates a warning that it's unused.
* build(MSVC): don't add non-MSVC compiler optionsdundargoc2022-08-13
| | | | | This will prevent warnings of the type "ignoring unknown option '-fPIC'" when using MSVC.
* build: bump minimum cmake version for all dependencies to 3.10dundargoc2022-08-13
| | | | | This removes cmake policy warning for CMP0053 on windows and ensures the build works correctly for newer cmake policies.
* build libuv cmake (#19632)Lewis Russell2022-08-12
| | | Co-authored-by: Daniel Hahler <git@thequod.de>
* build(deps): bump LuaJIT to HEAD - 633f265f6 (#19703)Christian Clason2022-08-11
|
* build(deps): bump LuaJIT to HEAD - a7d026548 (#19565)Christian Clason2022-07-28
|
* build(deps): bump LuaJIT to HEAD - e1339aed3 (#19536)Christian Clason2022-07-28
|
* build(macos): use consistent MACOSX_DEPLOYMENT_TARGET (#19430)Christian Clason2022-07-19
| | | | | | | 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.
* build: bump minimum CMake version in cmake.depsJames McCoy2022-07-19
| | | | | The minimum version for the main project was bumped in 035d82e0d3. Align cmake.deps to the same version for consistency.
* build(deps): bump LuaJIT to HEAD - 50936d784 (#19343)Christian Clason2022-07-14
|
* build(deps): bump tree-sitter to HEAD - 1f1b1eb45 (#19347)Christian Clason2022-07-14
|
* build(deps): bump Luv to 1.44.2-0 (#19346)Christian Clason2022-07-14
|
* build(deps): bump libuv to v1.44.2 (#19338)Christian Clason2022-07-12
|
* build: rename build-related dirsJustin M. Keyes2022-06-28
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/)