mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-09-22 23:24:25 +00:00
17 lines
440 B
Python
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",
|
|
],
|
|
)
|