mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-05 18:15:43 +00:00
21 lines
380 B
Python
21 lines
380 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
SDK_HEADERS=[
|
|
File("../../icons/assets_icons.h"),
|
|
File("xtreme.h"),
|
|
],
|
|
LINT_SOURCES=[
|
|
Dir("."),
|
|
],
|
|
)
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="xtreme")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = libenv.GlobRecursive("*.c")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|