-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move shared folder from devcontainer-setup (#12)
* Move shared folder from devcontainer-setup * Update docs --------- Signed-off-by: Dennis Meister <dennis.meister@bosch.com> Co-authored-by: Markus Petke <MP91@users.noreply.github.com>
- Loading branch information
1 parent
ae52495
commit 24ada01
Showing
10 changed files
with
723 additions
and
12 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ build | |
logs | ||
results | ||
.pytest_cache | ||
.coverage | ||
|
||
mkdocs.yml | ||
.generated-files.txt |
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,76 @@ | ||
<!-- markdownlint-disable --> | ||
|
||
<a href="../velocitas_lib/conan_helper.py#L0"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a> | ||
|
||
# <kbd>module</kbd> `velocitas_lib.conan_helper` | ||
|
||
|
||
|
||
|
||
|
||
--- | ||
|
||
<a href="../velocitas_lib/conan_helper.py#L22"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a> | ||
|
||
## <kbd>function</kbd> `get_required_sdk_version` | ||
|
||
```python | ||
get_required_sdk_version() → Optional[str] | ||
``` | ||
|
||
Return the required version of the core SDK. | ||
|
||
|
||
|
||
**Returns:** | ||
|
||
- <b>`Optional[str]`</b>: The required version or None in case SDK is not a dependency. | ||
|
||
|
||
--- | ||
|
||
<a href="../velocitas_lib/conan_helper.py#L39"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a> | ||
|
||
## <kbd>function</kbd> `export_conan_project` | ||
|
||
```python | ||
export_conan_project(conan_project_path: str) → None | ||
``` | ||
|
||
Export a conan project to the local conan cache. | ||
|
||
|
||
|
||
**Args:** | ||
|
||
- <b>`conan_project_path`</b> (str): The path to directory containing the project. | ||
|
||
|
||
--- | ||
|
||
<a href="../velocitas_lib/conan_helper.py#L98"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a> | ||
|
||
## <kbd>function</kbd> `add_dependency_to_conanfile` | ||
|
||
```python | ||
add_dependency_to_conanfile( | ||
dependency_name: str, | ||
dependency_version: str | ||
) → None | ||
``` | ||
|
||
Add the dependency name to the project's list of dependencies. | ||
|
||
|
||
|
||
**Args:** | ||
|
||
- <b>`dependency_name`</b> (str): The dependency to add e.g. grpc | ||
- <b>`dependency_version`</b> (str): The version of the dependency to add e.g. 1.50.1 | ||
|
||
|
||
|
||
|
||
--- | ||
|
||
_This file was automatically generated via [lazydocs](https://github.com/ml-tooling/lazydocs)._ |
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
Oops, something went wrong.