Information about compilers and toolchain
| 66 | |
| 67 | @dataclass |
| 68 | class CompilerInfo: |
| 69 | """Information about compilers and toolchain""" |
| 70 | |
| 71 | cc_path: str = "" |
| 72 | cxx_path: str = "" |
| 73 | cc_flags: list[str] = field(default_factory=lambda: list()) |
| 74 | cxx_flags: list[str] = field(default_factory=lambda: list()) |
| 75 | compiler_type: str = "" |
| 76 | build_type: str = "" |
| 77 | |
| 78 | |
| 79 | @dataclass |