BOSS doesn't update "search path" in delphi project when there is more than one path in variable
Hello many delphi projects need more than one search path for compiling executables.
I need to set up a lot of search paths in my boss.json file, but I can't get it to work.
If I configure the boss.json file this way it works:
{..
"": "./sources",
}
after running boss install http://githubproject Boss.exe correctly configures with the serchpath inside delphi's .dprj,
But if you configure boss.json this way
{..
"mainsrc": "./sources;./lib/dmustache;./lib/loggerpro;./lib/swagdoc/Source",
}
Boss.exe does not add any of the paths to the serchpath of the .dprj file
in case this is not an error, I ask that you just advise how to make this work.
The mainSrc parameter is to inform only the root folder. Then it scans all the folders within this main one and places them one by one.