Newer
Older
dub_jkp / examples / injected-from-dependency / dub.json
@richard andrew cattermole richard andrew cattermole on 19 Apr 2022 350 bytes Fix injectSourceFiles not going into description or actually working
{
	"description": "Some test code for Have_druntime version",
	"name": "injected-from-dependency",
	"targetType": "executable",

	"dependencies": {
		":toload": "*"
	},

	"subPackages": [
		{
			"name": "toload",
			"buildOptions": ["betterC"],
			"sourcePaths": ["toload"],
			"importPaths": ["toload"],
			"injectSourceFiles": ["ahook.d"]
		}
	]
}