mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
7bd3bd7ea4
* fbt: reduced amount of redundant compilation units * fbt: added GatherSources() method which can reject source paths starting with "!" in sources list; optimized apps' source lists * docs: updated on path exclusion for `sources` * apps: examples: fixed example_advanced_plugins source list * docs: more details on `sources`; apps: narrower sources lists
28 lines
616 B
Text
28 lines
616 B
Text
App(
|
|
appid="subghz",
|
|
name="Sub-GHz",
|
|
apptype=FlipperAppType.MENUEXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="subghz_app",
|
|
icon="A_Sub1ghz_14",
|
|
stack_size=3 * 1024,
|
|
order=10,
|
|
sources=[
|
|
"*.c",
|
|
"!subghz_cli.c",
|
|
"!helpers/subghz_chat.c",
|
|
],
|
|
resources="resources",
|
|
fap_libs=["assets", "hwdrivers"],
|
|
fap_icon="icon.png",
|
|
fap_category="Sub-GHz",
|
|
)
|
|
|
|
App(
|
|
appid="subghz_start",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="subghz_on_system_start",
|
|
sources=["subghz_cli.c", "helpers/subghz_chat.c"],
|
|
order=40,
|
|
)
|