(self, section, key)
| 2877 | dir_env_var = 'BOOST' |
| 2878 | |
| 2879 | def get_paths(self, section, key): |
| 2880 | pre_dirs = system_info.get_paths(self, section, key) |
| 2881 | dirs = [] |
| 2882 | for d in pre_dirs: |
| 2883 | dirs.extend([d] + self.combine_paths(d, ['boost*'])) |
| 2884 | return [d for d in dirs if os.path.isdir(d)] |
| 2885 | |
| 2886 | def calc_info(self): |
| 2887 | src_dirs = self.get_src_dirs() |
nothing calls this directly
no test coverage detected