Crafter.Math/project.json
2026-03-25 00:42:04 +01:00

43 lines
No EOL
1.2 KiB
JSON

{
"name": "crafter-math",
"configurations": [
{
"name": "base",
"interfaces": [
"interfaces/Crafter.Math-Vector",
"interfaces/Crafter.Math-Basic",
"interfaces/Crafter.Math-MatrixRowMajor",
"interfaces/Crafter.Math",
"interfaces/Crafter.Math-Intersection",
"interfaces/Crafter.Math-VectorF16",
"interfaces/Crafter.Math-VectorF32"
],
"implementations": []
},
{
"name": "lib",
"extends": ["base"],
"type":"library",
"dependencies": []
},
{
"name": "lib-shared",
"extends": ["base"],
"type":"shared-library",
"dependencies": []
},
{
"name": "lib-debug",
"extends": ["lib"],
"debug": true
}
],
"tests":[
{
"name": "F16-x86-64-sapphirerapids",
"implementations": ["tests/Vector"],
"march": "sapphirerapids",
"extends": ["lib-shared"]
}
]
}