Files
Flipper-ARF/lib/lfrfid/SConscript
T
2026-09-18 16:29:17 +00:00

17 lines
440 B
Python

Import("env")
# The LF RFID library is no longer linked into the firmware image. It is
# compiled privately into each app that uses it (see the LF RFID app's
# fap_private_libs). This SConscript is retained so the header include path and
# lint sources stay available; it no longer builds a static library for the
# internal firmware.
env.Append(
LINT_SOURCES=[
Dir("."),
],
CPPPATH=[
"#/lib/lfrfid",
],
)