Config.in 736 B

123456789101112131415161718192021222324
  1. comment "liquid-dsp requires a glibc or musl toolchain w/ dynamic library"
  2. depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL) || BR2_STATIC_LIBS
  3. config BR2_PACKAGE_LIQUID_DSP
  4. bool "liquid-dsp"
  5. depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL
  6. depends on !BR2_STATIC_LIBS
  7. help
  8. Liquid-DSP is a free and open-source signal processing
  9. library for software-defined radios written in C. Its
  10. purpose is to provide a set of extensible DSP modules that
  11. do no rely on external dependencies or cumbersome
  12. frameworks.
  13. http://liquidsdr.org/
  14. if BR2_PACKAGE_LIQUID_DSP
  15. config BR2_PACKAGE_LIQUID_DSP_FAST
  16. bool "optimize for speed over accuracy"
  17. help
  18. Optimize for speed over accuracy.
  19. endif