diff options
author | Ron Yorston <rmy@pobox.com> | 2018-03-27 11:57:40 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-03-27 12:19:30 +0100 |
commit | b7555409f60b9506cc3edb9fa3224dc051c027c6 (patch) | |
tree | 15cc1fc80214f37069eccde7c096c2ba0c4bc1ca /Config.in | |
parent | 9440270c25553cccf941d838cd9b58ca28729741 (diff) | |
download | busybox-w32-b7555409f60b9506cc3edb9fa3224dc051c027c6.tar.gz busybox-w32-b7555409f60b9506cc3edb9fa3224dc051c027c6.tar.bz2 busybox-w32-b7555409f60b9506cc3edb9fa3224dc051c027c6.zip |
Allow icon resources to be included in the binary
Include two styles of icon from the GNOME Adwaita theme. These
are enabled by default and add 30 Kbytes to the size of the binary.
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -401,6 +401,31 @@ config FEATURE_PRNG_ISAAC | |||
401 | 401 | ||
402 | endchoice | 402 | endchoice |
403 | 403 | ||
404 | config FEATURE_ICON | ||
405 | bool "Include application icon in binary" | ||
406 | default y | ||
407 | depends on PLATFORM_MINGW32 | ||
408 | help | ||
409 | Microsoft Windows applications can contain icons which are used in | ||
410 | various places in the user interface. Each icon adds 15 Kbytes to | ||
411 | the size of the binary. | ||
412 | |||
413 | choice | ||
414 | prompt "Application icon" | ||
415 | default FEATURE_ICON_ALL | ||
416 | depends on FEATURE_ICON | ||
417 | |||
418 | config FEATURE_ICON_ATERM | ||
419 | bool "Adwaita terminal" | ||
420 | |||
421 | config FEATURE_ICON_STERM | ||
422 | bool "Adwaita terminal (symbolic)" | ||
423 | |||
424 | config FEATURE_ICON_ALL | ||
425 | bool "All available icons" | ||
426 | |||
427 | endchoice | ||
428 | |||
404 | comment 'Build Options' | 429 | comment 'Build Options' |
405 | 430 | ||
406 | config STATIC | 431 | config STATIC |