X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=blobdiff_plain;f=docs%2Fdoxygen%2Fgmxtree.py;h=6f12d22e3e1c08c8e1831dad6c5a1760f884a3fa;hb=bc9ba47edc5b12b5d4324bcdbf8c5cd3cb048c3d;hp=6359b6391eca4b115a9df8541518e0b56ac6f98a;hpb=a1fbbb07241495656429dbb560e93769368609a4;p=alexxy%2Fgromacs.git diff --git a/docs/doxygen/gmxtree.py b/docs/doxygen/gmxtree.py index 6359b6391e..6f12d22e3e 100644 --- a/docs/doxygen/gmxtree.py +++ b/docs/doxygen/gmxtree.py @@ -627,7 +627,7 @@ class GromacsTree(object): .gitattributes for all the files. load_installed_file_list() can be called to load the list of installed - files from the build tree (generated by the find-installed-headers target). + files from the build tree (generated by CMake). scan_files() can be called to read all the files and initialize #include dependencies between the files based on the information. This is done like @@ -911,7 +911,7 @@ class GromacsTree(object): def load_installed_file_list(self): """Load list of installed files from the build tree.""" - listpath = os.path.join(self._build_root, 'docs', 'doxygen', 'installed-headers.txt') + listpath = os.path.join(self._build_root, 'src', 'gromacs', 'installed-headers.txt') with open(listpath, 'r') as installedfp: for line in installedfp: path = line.strip()