| 20 | } |
| 21 | |
| 22 | type cmakeConfig struct { |
| 23 | Namespace string `toml:"namespace"` |
| 24 | Linux targetConfig `toml:"linux"` |
| 25 | Windows targetConfig `toml:"windows"` |
| 26 | } |
| 27 | |
| 28 | func (c *cmakeConfig) GetNamespace() string { |
| 29 | return c.Namespace |
nothing calls this directly
no outgoing calls
no test coverage detected