boss icon indicating copy to clipboard operation
boss copied to clipboard

BOSS doesn't update "search path" in delphi project when there is more than one path in variable

Open marcosnielsen opened this issue 2 years ago • 2 comments

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.

marcosnielsen avatar Jun 28 '23 11:06 marcosnielsen

serchpath

marcosnielsen avatar Jun 28 '23 11:06 marcosnielsen

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.

andriwsluna avatar May 03 '24 19:05 andriwsluna