-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: describe spl features and cmake targets
- Loading branch information
Showing
10 changed files
with
80 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
📄 About | ||
******** | ||
|
||
.. mdinclude:: ../../CHANGELOG.md |
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,19 @@ | ||
✨ Features | ||
************ | ||
|
||
Component Report | ||
---------------- | ||
|
||
To support the :ref:`component <what_is_a_component>` development, SPL Core provides features to: | ||
|
||
- document the component behavior - see :ref:`How to create a component detail design <how_to_component_detail_design>` | ||
- test the component behavior - see :ref:`How to create a component test cases <how_to_component_test_cases>` | ||
- generate component report with full traceability between documentation, code and tests - see :ref:`Component relevant CMake Targets <component_cmake_targets>` | ||
|
||
|
||
Variant Report | ||
-------------- | ||
|
||
To support the :ref:`variant <what_is_a_variant>` development, SPL Core provides features to: | ||
|
||
TODO: add variant report description |
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 |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
generate_example_project | ||
start_new_component | ||
from_legacy_to_configurable_component | ||
start_new_variant |
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,4 @@ | ||
How to Start Working on a :ref:`Variant <what_is_a_variant>` | ||
############################################################ | ||
|
||
TODO: write this section |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
🔧 Reference | ||
🛠️ Reference | ||
************ | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
macros | ||
variables | ||
targets |
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,31 @@ | ||
CMake Targets | ||
============= | ||
|
||
|
||
reports | ||
------- | ||
|
||
Generates the overall variant report. | ||
|
||
docs | ||
---- | ||
|
||
Generates the variant documentation. | ||
|
||
.. _component_cmake_targets: | ||
|
||
<component>_report | ||
------------------ | ||
|
||
Generate component report with full traceability between documentation, code and tests. | ||
|
||
<component>_docs | ||
---------------- | ||
|
||
Generates the documentation for the given component. | ||
|
||
<component>_unittests | ||
--------------------- | ||
|
||
Runs the unit tests for the given component. | ||
|