diff options
| author | A2va <[email protected]> | 2023-12-22 18:11:58 +0100 |
|---|---|---|
| committer | A2va <[email protected]> | 2023-12-22 18:11:58 +0100 |
| commit | 4c0ed2ce5634a26ea9091a9a88523962606675df (patch) | |
| tree | 0665c52bfbe4df5fc3b4fbaba57f7d39474ff827 | |
| parent | 4ed4bbfec2214fab390c9b1758f86e909bec3e05 (diff) | |
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 |
