diff options
author | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-03 23:39:00 +0300 |
---|---|---|
committer | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-05-03 23:39:00 +0300 |
commit | 6e8f6702767f1442c90157b06ce2f77c20d191bb (patch) | |
tree | 80fc38a333d4696878ace19d6f35eb5a108c16b9 /lua/cmake/project.lua | |
parent | 75abc91c93dd89b1f9dee4b6aeba284009ae0b93 (diff) |
refactor: variants inside config moved one level up
Diffstat (limited to 'lua/cmake/project.lua')
-rw-r--r-- | lua/cmake/project.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/cmake/project.lua b/lua/cmake/project.lua index f5afde2..5524fbd 100644 --- a/lua/cmake/project.lua +++ b/lua/cmake/project.lua @@ -287,7 +287,7 @@ local do_setup = function(opts) Project.from_variants(yaml) end) else - Project.from_variants(config.cmake.variants) + Project.from_variants(config.variants) end end) end |