Newer
Older
dub_jkp / test / injected-from-dependency / dub.json
@richard andrew cattermole richard andrew cattermole on 19 Apr 2022 337 bytes Fix injectSourceFiles not going into description or actually working
  1. {
  2. "description": "Test if source file expected to be injected was into binary",
  3. "name": "injected-from-dependency",
  4. "targetType": "executable",
  5.  
  6. "dependencies": {
  7. ":toload": "*"
  8. },
  9.  
  10. "subPackages": [
  11. {
  12. "name": "toload",
  13. "sourcePaths": ["toload"],
  14. "importPaths": ["toload"],
  15. "injectSourceFiles": ["ahook.d"]
  16. }
  17. ]
  18. }