Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. config BR2_PACKAGE_CPPCMS
  2. bool "cppcms"
  3. select BR2_PACKAGE_ZLIB
  4. select BR2_PACKAGE_PCRE
  5. select BR2_PACKAGE_LIBGCRYPT
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. # cppcms uses <monetary.h> which doesn't exist in uClibc
  8. depends on BR2_TOOLCHAIN_USES_GLIBC
  9. help
  10. CppCMS is a Free High Performance Web Development Framework
  11. (not a CMS) aimed for Rapid Web Application Development. It
  12. differs from most of other web development frameworks like:
  13. Python Django or Java Servlets on the following aspects:
  14. - It is designed and tuned to handle extremely high loads.
  15. - It uses modern C++ as primary development language in
  16. order to achieve the above goal.
  17. - It is aimed on development of both Web Sites and Web
  18. Services.
  19. http://cppcms.com
  20. config BR2_PACKAGE_CPPCMS_ICU
  21. bool "enable icu support"
  22. depends on BR2_PACKAGE_CPPCMS
  23. select BR2_PACKAGE_ICU
  24. help
  25. Using ICU allows advanced localization features into CppCMS,
  26. in another hand ICU is heavier than iconv.
  27. comment "cppcms needs a glibc toolchain w/ C++"
  28. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC