Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « nfc « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 657f3a9e5b2be77a0e906dc4e0f88c3b78a95e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Import("env")

env.Append(
    CPPPATH=[
        "#/lib/nfc",
    ],
)

libenv = env.Clone(FW_LIB_NAME="nfc")
libenv.ApplyLibFlags()

sources = libenv.GlobRecursive("*.c*")

lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
libenv.Install("${LIB_DIST_DIR}", lib)
Return("lib")