-
Notifications
You must be signed in to change notification settings - Fork 442
/
library.json
50 lines (50 loc) · 1.11 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "liquid-dsp",
"version": "1.6.0",
"description": "Software-defined radio digital signal processing library",
"homepage": "https://liquidsdr.org",
"keywords":
[
"digital signal processing","DSP",
"software-defined radio", "SDR",
"Fourier transform,","FFT",
"filter","resample","interpolate","decimate",
"error correction","modulation"
],
"repository":
{
"type": "git",
"url": "https://github.com/jgaeddert/liquid-dsp.git"
},
"authors":
{
"name": "Joseph D. Gaeddert",
"email": "[email protected]",
"url": "https://liquidsdr.org/colophon",
"maintainer": true
},
"license": "MIT",
"build":
{
"extraScript": "scripts/generate_headers.py",
"flags":
[
"-I.",
"-Wno-deprecated-declarations"
],
"srcFilter":
[
"+<*.c>",
"+<*/src/*.c>",
"-<.git/>",
"-<*/src/*.proto.c>",
"-<*/src/*.av.c>",
"-<*/src/*.neon.c>",
"-<*/src/*.sse.c>",
"-<*/src/*.avx.c>",
"-<*/src/*.avx512f.c>",
"-<*/src/*.x86.s>"
]
},
"headers":"liquid.h"
}