Crafter.Graphics/project.json

68 lines
2.7 KiB
JSON
Raw Normal View History

2025-04-16 00:43:33 +02:00
{
"name": "crafter-graphics",
"configurations": [
{
"name": "base",
2025-11-25 20:40:37 +01:00
"implementations": ["implementations/Crafter.Graphics-Font", "implementations/Crafter.Graphics-Shm", "implementations/Crafter.Graphics-Window", "implementations/Crafter.Graphics-RenderingElement", "implementations/Crafter.Graphics-TextElement", "implementations/Crafter.Graphics-ImageElement", "implementations/Crafter.Graphics-MouseElement", "implementations/Crafter.Graphics-Transform"],
"interfaces": ["interfaces/Crafter.Graphics-Window", "interfaces/Crafter.Graphics", "interfaces/Crafter.Graphics-Types", "interfaces/Crafter.Graphics-Font", "interfaces/Crafter.Graphics-Shm", "interfaces/Crafter.Graphics-Animation", "interfaces/Crafter.Graphics-RenderingElement", "interfaces/Crafter.Graphics-TextElement", "interfaces/Crafter.Graphics-ImageElement", "interfaces/Crafter.Graphics-MouseElement", "interfaces/Crafter.Graphics-Transform"],
2025-11-16 15:32:11 +01:00
"type": "library"
},
{
"name": "wayland",
2025-11-23 04:04:53 +01:00
"implementations": ["implementations/Crafter.Graphics-Window_wayland"],
2025-11-17 00:44:45 +01:00
"interfaces": [],
2025-11-16 15:32:11 +01:00
"libs": ["wayland-client", "xkbcommon"],
2025-11-16 18:52:52 +01:00
"c_files": ["lib/xdg-shell-protocol", "lib/wayland-xdg-decoration-unstable-v1-client-protocol"],
2025-11-22 20:58:42 +01:00
"extends": ["base"],
"defines": [
2025-05-25 23:04:56 +02:00
{
2025-11-22 20:58:42 +01:00
"name": "CRAFTER_GRAPHICS_WAYLAND"
2025-04-19 15:46:26 +02:00
}
2025-11-22 20:58:42 +01:00
]
2025-04-16 00:43:33 +02:00
},
{
2025-11-16 15:32:11 +01:00
"name": "deps",
2025-05-04 05:15:31 +02:00
"dependencies": [
{
2025-05-06 12:39:11 +02:00
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Event.git",
2025-11-16 15:32:11 +01:00
"configuration":"lib"
2025-05-04 05:15:31 +02:00
}
]
2025-04-16 00:43:33 +02:00
},
2025-11-25 21:25:04 +01:00
{
"name": "deps-timing",
"dependencies": [
{
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Event.git",
"configuration":"lib-timing"
}
]
},
2025-04-16 00:43:33 +02:00
{
2025-11-16 15:32:11 +01:00
"name": "deps-debug",
"debug": true,
2025-04-16 00:43:33 +02:00
"dependencies": [
{
2025-11-26 02:56:38 +01:00
"path":"/home/jorijn/repos/Crafter/Crafter.Event/project.json",
2025-11-16 15:32:11 +01:00
"configuration":"lib-debug"
2025-04-16 00:43:33 +02:00
}
]
},
{
2025-11-16 15:32:11 +01:00
"name": "lib-wayland",
2025-11-16 18:52:52 +01:00
"extends": ["wayland", "deps"],
"type": "library"
2025-11-16 15:32:11 +01:00
},
2025-11-25 21:25:04 +01:00
{
"name": "lib-wayland-timing",
"extends": ["wayland", "deps-timing"],
"type": "library",
"defines": [{ "name": "CRAFTER_TIMING" }]
},
2025-11-16 15:32:11 +01:00
{
"name": "lib-wayland-debug",
2025-11-16 18:52:52 +01:00
"type": "library",
2025-11-16 15:32:11 +01:00
"extends": ["wayland", "deps-debug"]
2025-04-16 00:43:33 +02:00
}
]
}