Command line utilities for tab-separated value files
Puming via Digitalmars-d-announce
digitalmars-d-announce at puremagic.com
Wed Apr 13 17:06:44 PDT 2016
On Wednesday, 13 April 2016 at 16:34:16 UTC, Jon D wrote:
> Thanks Rory, Puming. I'll look into this and see how best to
> make it fit. I'm realizing also there's one additional
> capability it'd be nice to have in dub for tools like this,
> which in an option to install the executables somewhere that
> can be easily be put on the path. Still, even without this
> there'd be benefit to having them fetched via dub.
>
> --Jon
Well, you can do that:
In the subpackage dub.sdl, add targetPath:
```
name "app1"
targetType "executable"
targetPath "../bin/"
dependency "myapp:common" version="*"
```
More information about the Digitalmars-d-announce
mailing list