sort modules in module reference

This commit is contained in:
Radovan Bast 2015-06-04 16:04:24 +02:00
parent 7d9a8a5797
commit d660ba856d

View File

@ -56,7 +56,7 @@ def main():
files = glob.glob('%s/*.cmake' % os.path.join(THIS_DIR, '..', 'modules'))
for f in files:
for f in sorted(files):
file_name = ntpath.basename(f)
output.append('\n\n%s' % file_name)
output.append('-'*len(file_name))