Why I need DUB? Will never DMD don't just use import for import packages?

evilrat evilrat666 at gmail.com
Fri Apr 9 05:49:49 UTC 2021


On Thursday, 8 April 2021 at 21:36:02 UTC, Alain De Vos wrote:
> The most important task is
> "give me a list of to include .d files"
> "give me a list of the link libraries .a .so"

sure, use -v flag, this will give you compiler flags and other 
info
```
    dub build -v
```
this will give you extensive build information in json
```
    dub describe
```
also if you don't like dub going internet just add this flag
```
    --skip-registry=all
```


More information about the Digitalmars-d-learn mailing list