Data collected during the scan phase.
| 110 | |
| 111 | @dataclass |
| 112 | class ScannedData: |
| 113 | """Data collected during the scan phase.""" |
| 114 | |
| 115 | src_dir: Path |
| 116 | all_build_hpp_files: list[Path] |
| 117 | all_build_files: list[Path] # Build files in src/fl/build/ |
| 118 | cpp_hpp_by_dir: CppHppByDir |
| 119 | independently_compiled_dirs: set[str] = field(default_factory=lambda: set[str]()) |
| 120 | |
| 121 | |
| 122 | @dataclass |