2022-06-26 12:00:03 +00:00
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env.Append(
|
|
|
|
CPPPATH=[
|
|
|
|
"#/lib/subghz",
|
|
|
|
],
|
2023-12-01 09:16:48 +00:00
|
|
|
LINT_SOURCES=[
|
|
|
|
Dir("."),
|
|
|
|
],
|
2022-09-14 16:11:38 +00:00
|
|
|
SDK_HEADERS=[
|
2022-11-02 20:07:00 +00:00
|
|
|
File("environment.h"),
|
|
|
|
File("receiver.h"),
|
2023-06-06 21:28:26 +00:00
|
|
|
File("registry.h"),
|
2022-11-02 20:07:00 +00:00
|
|
|
File("subghz_worker.h"),
|
|
|
|
File("subghz_tx_rx_worker.h"),
|
2023-07-10 16:59:25 +00:00
|
|
|
File("subghz_file_encoder_worker.h"),
|
2022-11-02 20:07:00 +00:00
|
|
|
File("transmitter.h"),
|
|
|
|
File("protocols/raw.h"),
|
2023-11-01 07:24:11 +00:00
|
|
|
File("protocols/public_api.h"),
|
2022-11-02 20:07:00 +00:00
|
|
|
File("blocks/const.h"),
|
|
|
|
File("blocks/decoder.h"),
|
|
|
|
File("blocks/encoder.h"),
|
|
|
|
File("blocks/generic.h"),
|
|
|
|
File("blocks/math.h"),
|
2023-07-10 16:59:25 +00:00
|
|
|
File("blocks/custom_btn.h"),
|
2022-11-02 20:07:00 +00:00
|
|
|
File("subghz_setting.h"),
|
2023-06-06 21:28:26 +00:00
|
|
|
File("subghz_protocol_registry.h"),
|
2023-07-03 10:36:26 +00:00
|
|
|
File("devices/cc1101_configs.h"),
|
2023-07-17 07:51:15 +00:00
|
|
|
File("devices/cc1101_int/cc1101_int_interconnect.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")
|