fix, dub projects, the "subpackages" node can be an object

This commit is contained in:
Basile Burg 2021-10-12 18:59:25 +02:00
parent 134c244284
commit 56a9024583
2 changed files with 18 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# v3.9.15-dev
## Bugs fixed
- DUB projects, access violation for subpackages entries described using JSON objects.
# v3.9.14
- binary files for windows available again (#95)

View File

@ -1408,7 +1408,12 @@ begin
// subpackages
if fJSON.findArray('subPackages', arr) then
for i := 0 to arr.Count-1 do
tryAddFromFolder(fBasePath + arr.Strings[i]);
begin
if arr.JSONType = jtString then
tryAddFromFolder(fBasePath + arr.Strings[i])
else if arr.JSONType = jtObject then
tryAddFromFolder(arr.Objects[i].Strings['name']);
end;
// by config
conf := getCurrentCustomConfig;
if conf.isAssigned then
@ -1434,7 +1439,12 @@ begin
// subpackages
if conf.findArray('subPackages', arr) then
for i := 0 to arr.Count-1 do
tryAddFromFolder(fBasePath + arr.Strings[i]);
begin
if arr.JSONType = jtString then
tryAddFromFolder(fBasePath + arr.Strings[i])
else if arr.JSONType = jtObject then
tryAddFromFolder(arr.Objects[i].Strings['name']);
end;
// custom files in current config
if conf.findArray('sourceFiles', arr) then
for i := 0 to arr.Count-1 do