Gears/dub.json
2025-07-08 04:13:38 +10:00

32 lines
832 B
JSON

{
"name": "main",
"targetType": "none",
"subPackages": [
{
"name": "gears",
"targetType": "executable",
"targetName": "Gears",
"targetPath": "build",
"platforms": ["linux", "windows"],
"sourceFiles-linux": ["build/libvma.a", "build/libxxhash.a"],
"sourceFiles-windows": [],
"importPaths": ["src"],
"sourcePaths": ["src"],
"libs-linux": ["xcb", "X11", "X11-xcb", "vulkan", "stdc++"],
"libs-windows": [],
"preGenerateCommands-linux": ["./build-vma.sh"],
"preGenerateCommands-windows": [],
},
{
"name": "packer",
"targetType": "executable",
"targetPath": "build",
"targetName": "Packer",
"platforms": ["linux", "windows"],
"importPaths": ["src", "asset-packer"],
"sourceFiles-linux": ["src/util.d", "build/libxxhash.a"],
"sourcePaths": ["asset-packer"],
}
]
}