mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 11:51:48 +03:00
98d5718ec9
* fbt: changed cdefines & lib handling for external apps; added extra checks for app manifest fields; moved around AppsC generator * fbt: commandline fixes for spaces in paths * fbt: fixed stringification for FAP_VERSION * fbt: Removed excessive quoting for gdb * docs: update for cdefines; fbt: typo fix * fbt: enforcing at least 2 components in app version= Co-authored-by: あく <alleteam@gmail.com>
16 lines
266 B
Plaintext
16 lines
266 B
Plaintext
App(
|
|
appid="ccid_test",
|
|
name="CCID Debug",
|
|
apptype=FlipperAppType.DEBUG,
|
|
entry_point="ccid_test_app",
|
|
requires=[
|
|
"gui",
|
|
],
|
|
provides=[
|
|
"ccid_test",
|
|
],
|
|
stack_size=1 * 1024,
|
|
order=120,
|
|
fap_category="Debug",
|
|
)
|