Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lua/cmake-tools/session.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ function session.update(config, old_config)
end
if old_config.build_target then
config.build_target = old_config.build_target
if type(config.build_target) ~= "table" then -- Backwards compatibility (could be removed after a grace period) see PR!332
config.build_target = { config.build_target }
end
end
if old_config.launch_target then
config.launch_target = old_config.launch_target
Expand Down