diff options
| author | ruki <[email protected]> | 2022-10-26 23:26:03 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-10-26 23:26:03 +0800 |
| commit | c4a0ed84e0612446316d33f542d69bc550361292 (patch) | |
| tree | a4b0e5554ab9354aa7aad823261774415553b6d1 | |
| parent | a8641e6740999848d06f9e1a264379d8e35c55b2 (diff) | |
sork sourceinfos
| -rw-r--r-- | xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua index 24b680b0d..e4bfddae3 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua @@ -1331,7 +1331,7 @@ function _make_source_files(vcxprojfile, vsinfo, target) end -- make source files - for sourcefile, sourceinfo in pairs(sourceinfos) do + for sourcefile, sourceinfo in table.orderpairs(sourceinfos) do if #sourceinfo == #target.info then _make_source_file_forall(vcxprojfile, vsinfo, target, sourcefile, sourceinfo) else |
