Fix processing parameter folders.

This commit is contained in:
Relintai 2020-12-25 21:38:41 +01:00
parent 62fa0d69f7
commit 96f7aec272
1 changed files with 2 additions and 1 deletions

View File

@ -210,7 +210,8 @@ for fol in folders:
for f in ff:
if f.endswith("cpp"):
files.append(f)
files.append(os.path.abspath(fol + "/" + f))
#files.append(fol + "/" + f)
env.prg_sources = files
libapp = env.add_library("application", env.prg_sources)