manifest.json (897B)
1 { 2 "options": { 3 "task": "build" 4 }, 5 "fields": [ 6 { 7 "field": "src", 8 "resolve": true, 9 "relative": true 10 }, 11 { 12 "field": "include", 13 "resolve": true, 14 "relative": true 15 }, 16 { 17 "field": "libraries", 18 "resolve": false, 19 "relative": false 20 }, 21 { 22 "field": "libpath", 23 "resolve": true, 24 "relative": false 25 } 26 ], 27 "confs": [ 28 { 29 "task": "build", 30 "src": [ 31 "./src/labs.c" 32 ], 33 "include": [ 34 "./include" 35 ], 36 "libraries": [], 37 "libpath": [], 38 "dependencies": [ 39 "@stdlib/math/base/napi/unary" 40 ] 41 }, 42 { 43 "task": "benchmark", 44 "src": [ 45 "./src/labs.c" 46 ], 47 "include": [ 48 "./include" 49 ], 50 "libraries": [], 51 "libpath": [], 52 "dependencies": [] 53 }, 54 { 55 "task": "examples", 56 "src": [ 57 "./src/labs.c" 58 ], 59 "include": [ 60 "./include" 61 ], 62 "libraries": [], 63 "libpath": [], 64 "dependencies": [] 65 } 66 ] 67 }