(self, key='runtime_library_dirs')
| 936 | return self.get_paths(self.section, key) |
| 937 | |
| 938 | def get_runtime_lib_dirs(self, key='runtime_library_dirs'): |
| 939 | path = self.get_paths(self.section, key) |
| 940 | if path == ['']: |
| 941 | path = [] |
| 942 | return path |
| 943 | |
| 944 | def get_include_dirs(self, key='include_dirs'): |
| 945 | return self.get_paths(self.section, key) |