manifest.json (1324B)
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/hypotf.c" 32 ], 33 "include": [ 34 "./include" 35 ], 36 "libraries": [ 37 "-lm" 38 ], 39 "libpath": [], 40 "dependencies": [ 41 "@stdlib/math/base/napi/binary", 42 "@stdlib/math/base/assert/is-nanf", 43 "@stdlib/math/base/assert/is-infinitef", 44 "@stdlib/math/base/special/sqrtf" 45 ] 46 }, 47 { 48 "task": "benchmark", 49 "src": [ 50 "./src/hypotf.c" 51 ], 52 "include": [ 53 "./include" 54 ], 55 "libraries": [ 56 "-lm" 57 ], 58 "libpath": [], 59 "dependencies": [ 60 "@stdlib/math/base/assert/is-nanf", 61 "@stdlib/math/base/assert/is-infinitef", 62 "@stdlib/math/base/special/sqrtf" 63 ] 64 }, 65 { 66 "task": "examples", 67 "src": [ 68 "./src/hypotf.c" 69 ], 70 "include": [ 71 "./include" 72 ], 73 "libraries": [ 74 "-lm" 75 ], 76 "libpath": [], 77 "dependencies": [ 78 "@stdlib/math/base/assert/is-nanf", 79 "@stdlib/math/base/assert/is-infinitef", 80 "@stdlib/math/base/special/sqrtf" 81 ] 82 } 83 ] 84 }