diff options
author | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-04 01:41:56 +0300 |
---|---|---|
committer | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-04 01:41:56 +0300 |
commit | 51c462301b93eccbce6b9ed67675c8d26b998a7d (patch) | |
tree | c74632386d3fc974c0d01a17eeb402a28c496873 /lua/cmake/config.lua | |
parent | ac989fbbaad7a39b8cf075e165172a358c1620a1 (diff) |
fix: properly read for large number of targets in fileapi reply
Diffstat (limited to 'lua/cmake/config.lua')
-rw-r--r-- | lua/cmake/config.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/cmake/config.lua b/lua/cmake/config.lua index a0cdf0c..55ba38b 100644 --- a/lua/cmake/config.lua +++ b/lua/cmake/config.lua @@ -14,6 +14,9 @@ ---@field build_tool_args string[] An array of additional arguments to pass to the underlying build tool ---@field generator? string Set to a string to override CMake Tools’ preferred generator logic. If this is set, CMake will unconditionally use it as the -G CMake generator command line argument ---@field parallel_jobs? number By specifying a number, you can define how many jobs are run in parallel during the build +---@field build_directory string Build directory template +---@field environment {[string]:string} Environment for all `cmake` commands +---@field build_environment {[string]:string} Environment for all `cmake --build` commands ---@class CMakeVariant ---@field default string Default choice |