-
-
Notifications
You must be signed in to change notification settings - Fork 621
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1809 from hannes-harnisch/inheritdependencies
Feature for disabling inherited dependencies
- Loading branch information
Showing
5 changed files
with
79 additions
and
5 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
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
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
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,29 @@ | ||
inheritdependencies | ||
|
||
```lua | ||
inheritdependencies "value" | ||
``` | ||
|
||
For Visual Studio project files, this controls the generation of the `%(AdditionalDependencies)` entry in the list of libraries that a project links. | ||
|
||
### Parameters ### | ||
|
||
`value` one of: | ||
* `On` - The project(s) will inherit library dependencies based on the parent project (if any) and project default settings. This is the default behavior. | ||
* `Off` - The project(s) will not inherit any library dependencies. Only explicitly specified dependencies will be linked. | ||
|
||
## Applies To ### | ||
|
||
The `config` scope. | ||
|
||
### Availability ### | ||
|
||
Visual Studio 2015 and later. | ||
Premake 5.0-beta2 or later. | ||
|
||
### Examples ### | ||
|
||
```lua | ||
inheritdependencies "Off" | ||
``` | ||
|
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