Crafter.Math/project.json

27 lines
778 B
JSON
Raw Normal View History

2025-05-05 02:01:44 +02:00
{
2026-01-29 20:19:20 +01:00
"name": "crafter-match",
2025-05-05 02:01:44 +02:00
"configurations": [
{
"name": "base",
2026-02-19 02:36:36 +01:00
"interfaces": ["interfaces/Crafter.Math-Vector", "interfaces/Crafter.Math-Basic", "interfaces/Crafter.Math-MatrixRowMajor", "interfaces/Crafter.Math", "interfaces/Crafter.Math-Intersection"],
2026-01-29 20:19:20 +01:00
"implementations": []
2025-05-05 02:01:44 +02:00
},
{
2026-01-29 20:19:20 +01:00
"name": "lib",
2025-05-05 02:01:44 +02:00
"extends": ["base"],
2026-01-29 20:19:20 +01:00
"type":"library",
"dependencies": []
2025-05-05 02:01:44 +02:00
},
{
2026-01-29 20:19:20 +01:00
"name": "lib-debug",
"extends": ["lib"],
"debug": true
2026-02-11 02:52:03 +01:00
},
{
"name": "test",
"implementations": ["interfaces/main"],
"extends": ["base"],
"debug": true
2025-05-05 02:01:44 +02:00
}
]
2026-01-29 20:19:20 +01:00
}