Crafter.Thread/project.json

33 lines
873 B
JSON
Raw Permalink Normal View History

2025-02-17 22:31:53 +01:00
{
"name": "crafter-thread",
"configurations": [
{
2025-11-02 06:47:04 +01:00
"name": "lib",
"interfaces": ["interfaces/Crafter.Thread", "interfaces/Crafter.Thread-ThreadPool"],
"implementations": ["implementations/Crafter.Thread-ThreadPool"],
2025-05-07 19:10:22 +02:00
"type":"library"
2025-02-17 22:31:53 +01:00
},
{
2025-11-02 06:47:04 +01:00
"name": "lib-shared",
"extends": ["lib"],
"type":"shared-library"
2025-02-17 22:31:53 +01:00
},
{
2025-11-02 06:47:04 +01:00
"name": "lib-debug",
"extends": ["lib"],
"debug": true
}
],
"tests":[
2025-02-17 22:31:53 +01:00
{
2025-11-02 06:47:04 +01:00
"name": "should-compile",
"implementations": ["tests/ShouldCompile/ShouldCompile"],
"dependencies": [
{
"path":"./project.json",
"configuration":"lib-shared"
}
]
2025-02-17 22:31:53 +01:00
}
]
}