diff options
| author | ruki <[email protected]> | 2023-12-23 08:22:11 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-23 08:22:11 +0800 |
| commit | 728f688974dd7fc9afec6311a9db862b426a9291 (patch) | |
| tree | 0665c52bfbe4df5fc3b4fbaba57f7d39474ff827 | |
| parent | 4ed4bbfec2214fab390c9b1758f86e909bec3e05 (diff) | |
| parent | 4c0ed2ce5634a26ea9091a9a88523962606675df (diff) | |
Merge pull request #4535 from A2va/fix-natvis
Fix natvis with vsxmake project
| -rw-r--r-- | xmake/plugins/project/vsxmake/vsxmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/vsxmake/vsxmake.lua b/xmake/plugins/project/vsxmake/vsxmake.lua index b7999449e..37c19af45 100644 --- a/xmake/plugins/project/vsxmake/vsxmake.lua +++ b/xmake/plugins/project/vsxmake/vsxmake.lua @@ -143,7 +143,7 @@ function _buildparams(info, target, default) local files = table.join(info._targets[target].headerfiles or {}, info._targets[target].extrafiles) table.insert(r, _filter_files(files, nil, {".natvis"})) elseif args.incnatvis then - local files = info._targets[target].headerfiles + local files = table.join(info._targets[target].headerfiles or {}, info._targets[target].extrafiles) table.insert(r, _filter_files(files, {".natvis"})) end return r |
