Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/config/Kconfig-language.txt
  4. #
  5. menu "Samples"
  6. config CONFIG_SAMPLES
  7. bool "Create Samples"
  8. default y
  9. help
  10. axTLS contains various sample code.
  11. Select Y here if you want to build the various samples.
  12. config CONFIG_C_SAMPLES
  13. bool "axssl - C version"
  14. default y
  15. depends on CONFIG_SAMPLES
  16. help
  17. Build the "C" version of axssl. The features enabled are very
  18. dependent on the build mode ('full' mode will give all features).
  19. config CONFIG_CSHARP_SAMPLES
  20. bool "axssl - C# version"
  21. default y
  22. depends on CONFIG_SAMPLES && CONFIG_CSHARP_BINDINGS
  23. help
  24. Build the "C#" version of axssl. The features enabled are very
  25. dependent on the build mode ('full' mode will give all features).
  26. config CONFIG_VBNET_SAMPLES
  27. bool "axssl - VB.NET version"
  28. default y
  29. depends on CONFIG_SAMPLES && CONFIG_VBNET_BINDINGS
  30. help
  31. Build the "VB.NET" version of axssl. The features enabled are very
  32. dependent on the build mode ('full' mode will give all features).
  33. config CONFIG_JAVA_SAMPLES
  34. bool "axssl - Java version"
  35. default y
  36. depends on CONFIG_SAMPLES && CONFIG_JAVA_BINDINGS
  37. help
  38. Build the "Java" version of axssl. The features enabled are very
  39. dependent on the build mode ('full' mode will give all features).
  40. config CONFIG_PERL_SAMPLES
  41. bool "axssl - Perl version"
  42. default y
  43. depends on CONFIG_SAMPLES && CONFIG_PERL_BINDINGS
  44. help
  45. Build the "Perl" version of axssl. The features enabled are very
  46. dependent on the build mode ('full' mode will give all features).
  47. config CONFIG_LUA_SAMPLES
  48. bool "axssl - Lua version"
  49. default y
  50. depends on CONFIG_SAMPLES && CONFIG_LUA_BINDINGS
  51. help
  52. Build the "Lua" version of axssl. The features enabled are very
  53. dependent on the build mode ('full' mode will give all features).
  54. endmenu