Merge branch 'fz-dev' into dev

This commit is contained in:
MX
2023-02-08 12:43:07 +03:00
7 changed files with 26 additions and 10 deletions
+7 -1
View File
@@ -1,5 +1,7 @@
Import("env")
from fbt.util import GLOB_FILE_EXCLUSION
env.Append(
CPPPATH=[
"#/lib/digital_signal",
@@ -39,7 +41,11 @@ libs_plain = [
]
for lib in libs_plain:
sources += Glob(lib + "/*.c*", source=True)
sources += Glob(
lib + "/*.c*",
exclude=GLOB_FILE_EXCLUSION,
source=True,
)
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
libenv.Install("${LIB_DIST_DIR}", lib)