diff options
| author | ruki <[email protected]> | 2021-02-10 22:38:35 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-02-10 22:38:35 +0800 |
| commit | b3678f0c1604cc622ecbde1e8c786aa5fb9d355b (patch) | |
| tree | 85b54718ab33bc3ba876a71ae9f706c410a82fc9 /xmake/plugins/project/vsxmake/vsxmake.lua | |
| parent | 0356909455e4307acffe1cd9f2858ffaf1421f8a (diff) | |
add qt.ui files for vsxmake
Diffstat (limited to 'xmake/plugins/project/vsxmake/vsxmake.lua')
| -rw-r--r-- | xmake/plugins/project/vsxmake/vsxmake.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/plugins/project/vsxmake/vsxmake.lua b/xmake/plugins/project/vsxmake/vsxmake.lua index 3594cf7e2..0055aaff2 100644 --- a/xmake/plugins/project/vsxmake/vsxmake.lua +++ b/xmake/plugins/project/vsxmake/vsxmake.lua @@ -131,6 +131,9 @@ function _buildparams(info, target, default) elseif args.filerc then local files = info._targets[target].sourcefiles table.insert(r, _filter_files(files, {".rc"})) + elseif args.fileui then -- for qt/.ui + local files = info._targets[target].sourcefiles + table.insert(r, _filter_files(files, {".ui"})) elseif args.incc then local files = info._targets[target].headerfiles table.insert(r, _filter_files(files, nil, {".natvis"})) |
