Get a list of module files in the VTK directory.
(path)
| 60 | return (vtkSourceDir, moduleList, moduleTreeDepth) |
| 61 | |
| 62 | def FindModuleFiles(path): |
| 63 | ''' |
| 64 | Get a list of module files in the VTK directory. |
| 65 | ''' |
| 66 | moduleFiles = [os.path.join(root, name) |
| 67 | for root, dirs, files in os.walk(path) |
| 68 | for name in files |
| 69 | if name == ("module.cmake")] |
| 70 | return moduleFiles |
| 71 | |
| 72 | def ParseModuleFile(fileName): |
| 73 | ''' |