kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 5191a48df06ea47104ca67db19fa82058d09c20a
parent 0681cf12237b052be25cd690ad5e61ae24f9dd5c
Author: [email protected] <[email protected]>
Date:   Sun, 10 Nov 2024 17:28:44 +0100

Source groups in cxxdox.yml

Diffstat:
Mdocs/cxxdox.yml | 59++++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 36 insertions(+), 23 deletions(-)

diff --git a/docs/cxxdox.yml b/docs/cxxdox.yml @@ -1,26 +1,40 @@ title: KFR -postprocessor: - ignore: - - CMT_INLINE - - KFR_INTRINSIC - - KFR_MEM_INTRINSIC - - KFR_FUNCTION - - CMT_INTRINSIC - - CMT_MEM_INTRINSIC - - CMT_UNUSED - - CMT_INLINE - -clang: - arguments: - - '-DKFR_ENABLE_FLAC=1' - - '-DCMT_FORCE_GENERIC_CPU=1' - - '-std=gnu++17' - - '-DDOCUMENTATION' - -input_directory: ../include/kfr - -masks: ['**/*.hpp', '**/*.h'] +input: + - include: + - include/kfr/**/*.h + hide_tokens: + - CMT_INLINE + - KFR_INTRINSIC + - KFR_MEM_INTRINSIC + - KFR_FUNCTION + - CMT_INTRINSIC + - CMT_MEM_INTRINSIC + - CMT_UNUSED + - CMT_INLINE + - KFR_API_SPEC + compile_options: + - "-DKFR_ENABLE_FLAC=1" + - "-DCMT_FORCE_GENERIC_CPU=1" + - "-std=gnu99" + - "-DDOCUMENTATION" + - include: + - include/kfr/**/*.hpp + hide_tokens: + - CMT_INLINE + - KFR_INTRINSIC + - KFR_MEM_INTRINSIC + - KFR_FUNCTION + - CMT_INTRINSIC + - CMT_MEM_INTRINSIC + - CMT_UNUSED + - CMT_INLINE + - KFR_API_SPEC + compile_options: + - "-DKFR_ENABLE_FLAC=1" + - "-DCMT_FORCE_GENERIC_CPU=1" + - "-std=gnu++17" + - "-DDOCUMENTATION" repository: https://github.com/kfrlib/kfr/blob/{TAG}/include/kfr/{FILE}#L{LINE} @@ -69,4 +83,4 @@ groups: random: "PRNG functions and expressions" reducing: "Reducing functions" utility: "Utility functions" - -\ No newline at end of file + capi: "C API"