Config.in 611 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_DUKTAPE
  2. bool "duktape"
  3. depends on !BR2_STATIC_LIBS
  4. depends on !BR2_OPTIMIZE_FAST
  5. help
  6. Duktape is an embeddable Javascript engine, with a focus on
  7. portability and compact footprint.
  8. Duktape is easy to integrate into a C/C++ project: add
  9. duktape.c, duktape.h, and duk_config.h to your build, and use
  10. the Duktape API to call Ecmascript functions from C code and
  11. vice versa.
  12. http://www.duktape.org
  13. comment "duktape needs a toolchain w/ dynamic library"
  14. depends on BR2_STATIC_LIBS
  15. comment "duktape can't be built with Optimize for fast"
  16. depends on BR2_OPTIMIZE_FAST