-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ea6681
commit 4802d6b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Added `--deep=` switch to dub build | ||
|
||
By specifying this flag, you can now build all the dependencies | ||
of a staticLibrary. The default behavior is to only build the | ||
library located in the root directory of the dub configuration | ||
file. This allows better integration with other build systems | ||
which require the libraries to be built upfront. | ||
|
||
``` | ||
dub build --deep | ||
``` | ||
|
||
If a staticLibrary A depends on staticLibrary B, and the --deep | ||
flag is specified, dub will output both the A and B libraries. |