flipperzero-firmware/furi/SConscript
hedger 8b7a52b97b
fbt: fixed linter paths (#1930)
* fbt: fixed linter paths
* lint: changed file permissions

Co-authored-by: あく <alleteam@gmail.com>
2022-10-27 05:25:31 +09:00

19 lines
302 B
Python

Import("env")
env.Append(
LINT_SOURCES=[
"furi",
"furi/core",
]
)
libenv = env.Clone(FW_LIB_NAME="furi")
libenv.ApplyLibFlags()
sources = libenv.GlobRecursive("*.c")
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
libenv.Install("${LIB_DIST_DIR}", lib)
Return("lib")