Skip to content

post_build

post_build

Type: object

Properties for post-build steps to be performed for this project. The project may reference an SDK template profile (A), or an existing, specific post-build file (B). When generating a project referencing an SDK template profile, the .slcp file shall be rewritten to point to the path of the resolved post-build file.

Key Required Type Description
profile A String The ID of the post-build profile to use from the SDK as a template for this project. If the requested profile doesn't exist in the SDK, an error is raised.
path B String Path to post-build file.

Example:

1
2
post_build:
  profile: trustzone-secure

1
2
post_build:
  path: my_project.slpb
Back to top