Skip to content
Snippets Groups Projects
Commit eb619071 authored by Luca Erbetta's avatar Luca Erbetta :rocket:
Browse files

[SBS] Fixed bug where compiling a single entrypoint would not work

parent dda7ca4b
Branches
Tags
No related merge requests found
...@@ -282,7 +282,7 @@ def importLibs(path): ...@@ -282,7 +282,7 @@ def importLibs(path):
stype = conf.get(i, 'Type') stype = conf.get(i, 'Type')
if stype == 'library': if stype == 'library':
if i not in extlibs: if i not in extlibs:
extlibs[i] = {'subdir': projconf['SBS_BASE'] + "/" + conf.get(i, 'Subdir'), extlibs[i] = {'subdir': '' if conf.get(i, 'Subdir') == '' else projconf['SBS_BASE'] + "/" + conf.get(i, 'Subdir'),
'libs': [projconf['SBS_BASE'] + "/" + x.strip() for x in conf.get(i, 'Libs').split()], 'libs': [projconf['SBS_BASE'] + "/" + x.strip() for x in conf.get(i, 'Libs').split()],
'defines': conf.get(i, 'Defines').strip(), 'defines': conf.get(i, 'Defines').strip(),
'includes': [projconf['SBS_BASE'] + "/" + x.strip() for x in conf.get(i, 'Includes').split()]} 'includes': [projconf['SBS_BASE'] + "/" + x.strip() for x in conf.get(i, 'Includes').split()]}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment