mirror of
https://github.com/bettse/seader.git
synced 2026-04-17 13:15:43 +00:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# qv. https://github.com/flipperdevices/flipperzero-firmware/blob/dev/documentation/AppManifests.md
|
|
|
|
App(
|
|
appid="seader",
|
|
name="Seader",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="seader_app",
|
|
cdefines=["APP_SEADER"],
|
|
requires=[
|
|
"gui", "storage", "nfc",
|
|
],
|
|
stack_size=7 * 1024,
|
|
order=20,
|
|
sources=[
|
|
"seader.c",
|
|
"bsearch.c", "aeabi_uldivmod.sx",
|
|
"ccid.c", "uart.c",
|
|
"rfal_picopass.c", "scenes/*.c",
|
|
"seader_worker.c",
|
|
"seader_credential.c",
|
|
"seader_icons.c",
|
|
],
|
|
fap_icon="icons/logo.png",
|
|
fap_category="NFC",
|
|
fap_version="1.0",
|
|
fap_author="bettse",
|
|
# fap_extbuild=(
|
|
# ExtFile(
|
|
# path="${FAP_SRC_DIR}/lib/asn1/asn_system.h",
|
|
# command="asn1c -D ${FAP_SRC_DIR}/lib/asn1 -no-gen-example -pdu=all ${FAP_SRC_DIR}/seader.asn1"
|
|
# ),
|
|
# ),
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="asn1",
|
|
cflags=["-Wno-error"],
|
|
),
|
|
],
|
|
fap_weburl="https://seader.ericbetts.dev",
|
|
fap_icon_assets="icons",
|
|
)
|