Newer
Older
dub_jkp / changelog / deep.dd
@Jan Jurzitza Jan Jurzitza on 19 Aug 2023 491 bytes add changelog entry for #2647
  1. Added `--deep=` switch to dub build
  2.  
  3. By specifying this flag, you can now build all the dependencies
  4. of a staticLibrary. The default behavior is to only build the
  5. library located in the root directory of the dub configuration
  6. file. This allows better integration with other build systems
  7. which require the libraries to be built upfront.
  8.  
  9. ```
  10. dub build --deep
  11. ```
  12.  
  13. If a staticLibrary A depends on staticLibrary B, and the --deep
  14. flag is specified, dub will output both the A and B libraries.