diff options
author | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-04 00:45:06 +0300 |
---|---|---|
committer | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-04 00:45:06 +0300 |
commit | ac989fbbaad7a39b8cf075e165172a358c1620a1 (patch) | |
tree | 4c198e6a34e6dd5435a382c0861a4f4aca23bcd4 /lua/cmake/config.lua | |
parent | c4f992a3b60d1827c68f9e3bab7e18f3c679679d (diff) |
fix: more convinient short description for default variants
Diffstat (limited to 'lua/cmake/config.lua')
-rw-r--r-- | lua/cmake/config.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/cmake/config.lua b/lua/cmake/config.lua index 25ae976..a0cdf0c 100644 --- a/lua/cmake/config.lua +++ b/lua/cmake/config.lua @@ -67,8 +67,8 @@ local default_config = { choices = { debug = { short = "Debug", buildType = "Debug" }, release = { short = "Release", buildType = "Release" }, - relWithDebInfo = { short = "Release with debug info", buildType = "RelWithDebInfo" }, - minSizeRel = { short = "Minimal size releaze", buildType = "MinSizeRel" }, + relWithDebInfo = { short = "RelWithDebInfo", buildType = "RelWithDebInfo" }, + minSizeRel = { short = "MinSizeRel", buildType = "MinSizeRel" }, }, }, }, |