Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adapter ¶
type Adapter interface { // Build builds the targets Build(pc *config.ProjectConfig) error // Targets return the paths of the targets built by the Build function Targets(pc *config.ProjectConfig) (targets []string, err error) //CmakeConfig return a string to add in the cmake of the project who use the library CmakeConfig(pc *config.ProjectConfig) (string, error) }
type AdapterGetter ¶
type AdapterGetter interface {
FromPC(adp *manifest.AdapterConfig) (Adapter, error)
}
type AdapterTestable ¶ added in v0.3.0
type AdapterTestable interface { // Test run tests Test(pc *config.ProjectConfig) error }
Click to show internal directories.
Click to hide internal directories.