ensure that the generated dir is included in libs
This commit is contained in:
parent
f266d3b3db
commit
f3c682422f
|
@ -311,6 +311,10 @@ def getLibs():
|
||||||
fn=os.path.join(base,sd)
|
fn=os.path.join(base,sd)
|
||||||
if os.path.isdir(fn):
|
if os.path.isdir(fn):
|
||||||
rt.append(sd)
|
rt.append(sd)
|
||||||
|
EXTRAS=['generated']
|
||||||
|
for e in EXTRAS:
|
||||||
|
if not e in rt:
|
||||||
|
rt.append(e)
|
||||||
return rt
|
return rt
|
||||||
|
|
||||||
OWNLIBS=getLibs()+["FS","WiFi"]
|
OWNLIBS=getLibs()+["FS","WiFi"]
|
||||||
|
|
Loading…
Reference in New Issue