aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-03-27 11:57:40 +0100
committerRon Yorston <rmy@pobox.com>2018-03-27 12:19:30 +0100
commitb7555409f60b9506cc3edb9fa3224dc051c027c6 (patch)
tree15cc1fc80214f37069eccde7c096c2ba0c4bc1ca /Config.in
parent9440270c25553cccf941d838cd9b58ca28729741 (diff)
downloadbusybox-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.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index a18d26720..4697f2a4d 100644
--- a/Config.in
+++ b/Config.in
@@ -401,6 +401,31 @@ config FEATURE_PRNG_ISAAC
401 401
402endchoice 402endchoice
403 403
404config 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
413choice
414 prompt "Application icon"
415 default FEATURE_ICON_ALL
416 depends on FEATURE_ICON
417
418config FEATURE_ICON_ATERM
419 bool "Adwaita terminal"
420
421config FEATURE_ICON_STERM
422 bool "Adwaita terminal (symbolic)"
423
424config FEATURE_ICON_ALL
425 bool "All available icons"
426
427endchoice
428
404comment 'Build Options' 429comment 'Build Options'
405 430
406config STATIC 431config STATIC