2022-06-26 12:00:03 +00:00
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env.Append(
|
|
|
|
CPPPATH=[
|
|
|
|
"#/lib/subghz",
|
|
|
|
],
|
2022-09-14 16:11:38 +00:00
|
|
|
SDK_HEADERS=[
|
2022-11-02 15:15:40 +00:00
|
|
|
File("environment.h"),
|
|
|
|
File("receiver.h"),
|
|
|
|
File("registry.h"),
|
|
|
|
File("subghz_worker.h"),
|
|
|
|
File("subghz_tx_rx_worker.h"),
|
|
|
|
File("transmitter.h"),
|
|
|
|
File("protocols/raw.h"),
|
|
|
|
File("blocks/const.h"),
|
|
|
|
File("blocks/decoder.h"),
|
|
|
|
File("blocks/encoder.h"),
|
|
|
|
File("blocks/generic.h"),
|
|
|
|
File("blocks/math.h"),
|
|
|
|
File("subghz_setting.h"),
|
2022-09-14 16:11:38 +00:00
|
|
|
],
|
2022-06-26 12:00:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="subghz")
|
|
|
|
libenv.ApplyLibFlags()
|
|
|
|
|
|
|
|
sources = libenv.GlobRecursive("*.c*")
|
|
|
|
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
|
|
Return("lib")
|