Skip to content

sdk

Required: Yes
Type: Object

Reference to the exact SDK and version the project is designed to be used with. Tools can use this to automatically generate a project file for the correct SDK.

Example projects that ship as part of an SDK should not have the sdk property set, as the correct SDK can be inferred from the fact that the project is inside its directory structure. When a SLC project file that is not part of an SDK is generated, or the project file is copied out of the SDK as part of the generation process, the tool should update the sdk property of the project file to match the last used SDK.

Field Type Description
id string ID of the SDK
version string Version of the SDK

Example

1
2
3
sdk:
  id: gecko_sdk
  version: 3.2.0
Back to top