00076deece
* SCons: do not include backup files in build * fbt: now GlobRecursive by default excludes backup files * fbt: added backup file exclusion to plain libs Signed-off-by: Michal Suchanek <msuchanek@suse.de> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: あく <alleteam@gmail.com>
53 lines
897 B
Plaintext
53 lines
897 B
Plaintext
Import("env")
|
|
|
|
from fbt.util import GLOB_FILE_EXCLUSION
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/digital_signal",
|
|
"#/lib/fnv1a_hash",
|
|
"#/lib/heatshrink",
|
|
"#/lib/micro-ecc",
|
|
"#/lib/nanopb",
|
|
"#/lib/u8g2",
|
|
],
|
|
CPPDEFINES=[
|
|
"PB_ENABLE_MALLOC",
|
|
],
|
|
SDK_HEADERS=[
|
|
File("micro-ecc/uECC.h"),
|
|
],
|
|
)
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="misc")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = []
|
|
|
|
libs_recurse = [
|
|
"digital_signal",
|
|
"micro-ecc",
|
|
"u8g2",
|
|
"update_util",
|
|
]
|
|
|
|
for lib in libs_recurse:
|
|
sources += libenv.GlobRecursive("*.c*", lib)
|
|
|
|
libs_plain = [
|
|
"heatshrink",
|
|
"nanopb",
|
|
]
|
|
|
|
for lib in libs_plain:
|
|
sources += Glob(
|
|
lib + "/*.c*",
|
|
exclude=GLOB_FILE_EXCLUSION,
|
|
source=True,
|
|
)
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|