Skip to content

Commit

Permalink
build: add WebAssembly configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Oct 15, 2024
1 parent 2ce25ea commit 870f645
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/exp2/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"options": {
"task": "build"
"task": "build",
"wasm": false
},
"fields": [
{
Expand All @@ -27,6 +28,7 @@
"confs": [
{
"task": "build",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -47,6 +49,7 @@
},
{
"task": "benchmark",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -66,6 +69,27 @@
},
{
"task": "examples",
"wasm": false,
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/assert/is-nan",
"@stdlib/constants/float64/max-base2-exponent",
"@stdlib/constants/float64/pinf",
"@stdlib/math/base/special/round",
"@stdlib/math/base/special/ldexp",
"@stdlib/constants/float64/min-base2-exponent"
]
},
{
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
],
Expand Down

0 comments on commit 870f645

Please sign in to comment.