-
Notifications
You must be signed in to change notification settings - Fork 7
API documentation upgrade #193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f87c262
Add a config file for cminx
mtravaillard e548e63
set relative_to_config back to default value becaues this parameter i…
mtravaillard 91fc915
add doc for build scripts.
mtravaillard 8167296
Set a list of file/directory to exclude from cminx rST generation
mtravaillard 6d9a73e
Add module name for each files and create "To Update" description for…
mtravaillard f4667d1
WIP: API doc upgrade 1/?
mtravaillard a2c88cf
WIP: API doc upgrade 2/?
mtravaillard ffe91ca
Remove verisc as it's deprecated
mtravaillard 3209de6
API doc upgrade 3/3
mtravaillard 0900cdd
Missed spacing for fc4sc function
mtravaillard e7413d9
Excluding internal functions from documentation
mtravaillard abd81f9
Add more visibility for the API documentation
mtravaillard b896cc4
move sail to build scripts directory
mtravaillard 9b2b980
Changes requested
mtravaillard 5186030
Add link to API documentation on the header of the documentation
mtravaillard 75c5691
Fix, rename and remove non related link in footer and header
mtravaillard 2eb6147
center CMake & Open Source on first webdoc page
mtravaillard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
cmake/riscv/sail/sail_install.cmake → ...ild_scripts/riscv/sail/sail_install.cmake
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,3 +1,25 @@ | ||
| #[[[ @module ipxact | ||
| #]] | ||
|
|
||
| #[[[ | ||
| # This function import an IP-XACT .xml file and convert it to an SoCMake HWIP. | ||
| # | ||
| # ``xmlstarlet`` or ``xsltproc`` will be used, depending on the one found on your system, | ||
| # to extract the data coming from the .xml file. | ||
| # | ||
| # It will find the differents IPs, find the corresponding file and do the corresponding linking, | ||
| # everything will be stored in a Config.cmake file. | ||
| # | ||
| # :param COMP_XML: Path to the ipxact .xml file. | ||
| # :type COMP_XML: string | ||
| # | ||
| # **Keyword Arguments** | ||
| # | ||
| # :keyword GENERATE_ONLY: If set, no Config.cmake file is generated, but the HWIP is still created and can be referenced in a parent scope (similar to a call to add_ip(), the IP variable is set to the parent scope). | ||
| # :type GENERATE_ONLY: bool | ||
| # :keyword IPXACT_SOURCE_DIR: path to be set has ${ip_vendor}__${ip_library}__${ip_name}__${ip_version}_IPXACT_SOURCE_DIR, if this argument is used. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Risto97 What is the use of this? |
||
| # :type IPXACT_SOURCE_DIR: string | ||
| #]] | ||
| function(add_ip_from_ipxact COMP_XML) | ||
| cmake_parse_arguments(ARG "GENERATE_ONLY" "IPXACT_SOURCE_DIR" "" ${ARGN}) | ||
| if(ARG_UNPARSED_ARGUMENTS) | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.