Crafter.Graphics/examples/VulkanTriangle/project.json

32 lines
837 B
JSON
Raw Normal View History

2025-06-13 23:59:36 +02:00
{
"name": "crafter-graphics",
"configurations": [
{
2026-01-28 01:06:48 +01:00
"name": "executable",
"implementations": ["main"],
2025-06-13 23:59:36 +02:00
"dependencies": [
{
"path":"../../project.json",
2026-01-31 21:08:42 +01:00
"configuration":"lib-vulkan-debug"
2025-06-13 23:59:36 +02:00
}
2026-01-28 23:37:12 +01:00
],
"shaders": [
{
"path":"raygen.glsl",
2026-01-29 19:18:47 +01:00
"type": 6,
"entrypoint":"main"
},
{
"path":"closesthit.glsl",
"type": 9,
"entrypoint":"main"
},
{
"path":"miss.glsl",
"type": 10,
2026-01-28 23:37:12 +01:00
"entrypoint":"main"
}
2025-06-13 23:59:36 +02:00
]
}
]
}