mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
fbt: fix for cincludes in app's private library definition (#1882)
This commit is contained in:
parent
f06930e4ae
commit
8ec5527ae4
1 changed files with 1 additions and 4 deletions
|
@ -80,10 +80,7 @@ def BuildAppElf(env, app):
|
||||||
*lib_def.cflags,
|
*lib_def.cflags,
|
||||||
],
|
],
|
||||||
CPPDEFINES=lib_def.cdefines,
|
CPPDEFINES=lib_def.cdefines,
|
||||||
CPPPATH=list(
|
CPPPATH=list(map(app._appdir.Dir, lib_def.cincludes)),
|
||||||
os.path.join(app._appdir.path, cinclude)
|
|
||||||
for cinclude in lib_def.cincludes
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lib = private_lib_env.StaticLibrary(
|
lib = private_lib_env.StaticLibrary(
|
||||||
|
|
Loading…
Reference in a new issue