summaryrefslogtreecommitdiffstats
path: root/Utilities/Doxygen
Commit message (Collapse)AuthorAgeFilesLines
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-2/+2
| | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-9/+9
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-18/+18
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Doxygen: Remove dependency on VTK when building doxygen.Nicolas Despres2011-10-231-2/+0
|
* Doxygen: Generate call graph and relationships.Nicolas Despres2011-10-231-1/+3
| | | | It helps code browsing and understanding for new developers.
* Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046)Brad King2010-07-293-17/+17
| | | | | This is good practice, and is necessary to support building CMake as a subdirectory of another project.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-0/+12
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* Remove WXDialog source codeBrad King2009-08-051-1/+0
| | | | | The QtDialog is our supported cross-platform GUI, so the WXDialog source is no longer needed.
* STYLE: Do doxygen for CPackAndy Cedilnik2007-04-041-0/+1
|
* ENH: CleanupAndy Cedilnik2005-01-181-14/+17
|
* a) new version of tools like Doxygen and Graphviz now set install path info ↵Sebastien Barre2004-06-081-0/+4
| | | | | | in win32 registery. use it. b) remove DOT_PATH, it was polluting the cache (can be computed from DOT, update CMakeLists.txt accordingly if DOT_PATH is not defined)
* ENH: Handle kwsys properlyAndy Cedilnik2003-11-051-2/+3
|
* ENH: Cleanup. We do not really need to use vtk for documentation. We only ↵Andy Cedilnik2003-11-051-4/+0
| | | | need utilities/doxygen directory
* ENH: Add all subdirectoriesAndy Cedilnik2003-10-251-0/+5
|
* FIX: HHC is now HTML_HELP_COMPILERSebastien Barre2003-01-161-10/+10
|
* FIX: remove that good ol' exit 0;Sebastien Barre2002-02-131-3/+1
|
* FIX: update html archive filenameSebastien Barre2002-02-131-3/+3
|
* ENH: Contribution graphsSebastien Barre2002-02-134-22/+108
|
* UpdateSebastien Barre2001-11-022-15/+8
|
* Doxygen doc generatorSebastien Barre2001-11-023-0/+285