Gears/dub.json
2025-07-08 04:24:34 +10:00

30 lines
799 B
JSON

{
"name": "main",
"targetType": "none",
"subPackages": [
{
"name": "gears",
"targetType": "executable",
"targetName": "Gears",
"targetPath": "build",
"sourceFiles-linux": ["build/libvma.a", "build/libxxhash.a"],
"sourceFiles-windows": [],
"importPaths": ["src/gears", "src/shared"],
"sourcePaths": ["src/gears", "src/shared"],
"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",
"importPaths": ["src/packer", "src/shared"],
"sourcePaths": ["src/packer", "src/shared"],
"sourceFiles-linux": ["build/libxxhash.a"],
}
]
}