Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typos identified using codespell | Jean-Christophe Fillion-Robin | 2020-07-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://github.com/codespell-project/codespell#readme The following command was used: ``` codespell -q6 --skip="\ .git,\ *.json,\ ./Copyright.txt,\ ./Help/command/foreach.rst,\ ./Help/prop_test/REQUIRED_FILES.rst,\ ./Help/variable/CTEST_COVERAGE_COMMAND.rst,\ ./Modules/CMakeCheckCompilerFlagCommonPatterns.cmake,\ ./Modules/CMakeRCInformation.cmake,\ ./Modules/Internal/CPack/NSIS.template.in,\ ./Modules/FindMatlab.cmake,\ ./Modules/MatlabTestsRedirect.cmake,\ ./Modules/Platform/Windows-Clang.cmake,\ ./Modules/Platform/Windows-Intel-Fortran.cmake,\ ./Modules/Platform/Windows-MSVC.cmake,\ ./Source/CMakeVersion.cmake,\ ./Source/cmConvertMSBuildXMLToJSON.py,\ ./Source/cmCreateTestSourceList.cxx,\ ./Source/cmGlobalVisualStudio10Generator.cxx,\ ./Source/cmExportBuildFileGenerator.cxx,\ ./Source/cmExportInstallAndroidMKGenerator.cxx,\ ./Source/cmExportInstallFileGenerator.cxx,\ ./Source/cmExportSet.cxx,\ ./Source/cmExportTryCompileFileGenerator.cxx,\ ./Source/cmFindPackageCommand.cxx,\ ./Source/cmInstallCommand.cxx,\ ./Source/cmGeneratorExpressionLexer.cxx,\ ./Source/cmLocalVisualStudio7Generator.cxx,\ ./Source/cmOrderDirectories.cxx,\ ./Source/cmTarget.cxx,\ ./Source/kwsys/*,\ ./Source/QtDialog/CMakeSetupDialog.ui,\ ./Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx,\ ./Source/CTest/cmParseCoberturaCoverage.h,\ ./Tests/CMakeTests/ImplicitLinkInfoTest.cmake.in,\ ./Tests/RunCMake/CPack/tests/DMG_SLA/English.license.rtf,\ ./Tests/RunCMake/CPack/tests/DMG_SLA/German.license.txt,\ ./Tests/RunCMake/CPack/tests/DMG_SLA/German.menu.txt,\ ./Tests/RunCMake/GoogleTest/xml_output.cpp,\ ./Tests/RunCMake/Make/TargetMessages*,\ ./Utilities/*,\ " \ -L "\ dependees,\ endwhile,\ fo,\ filetest,\ helpfull,\ nd,\ objext,\ stoll,\ supercedes,\ superceded,\ vas,\ varn,\ " ``` | ||||
* | Revise include order using clang-format-6.0 | Kitware Robot | 2019-10-01 | 1 | -1/+2 |
| | | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0. | ||||
* | Revise C++ coding style using clang-format | Kitware Robot | 2016-05-16 | 1 | -90/+56 |
| | | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. | ||||
* | Format include directive blocks and ordering with clang-format | Brad King | 2016-04-29 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sort include directives within each block (separated by a blank line) in lexicographic order (except to prioritize `sys/types.h` first). First run `clang-format` with the config file: --- SortIncludes: false ... Commit the result temporarily. Then run `clang-format` again with: --- SortIncludes: true IncludeCategories: - Regex: 'sys/types.h' Priority: -1 ... Commit the result temporarily. Start a new branch and cherry-pick the second commit. Manually resolve conflicts to preserve indentation of re-ordered includes. This cleans up the include ordering without changing any other style. Use the following command to run `clang-format`: $ git ls-files -z -- \ '*.c' '*.cc' '*.cpp' '*.cxx' '*.h' '*.hh' '*.hpp' '*.hxx' | egrep -z -v '(Lexer|Parser|ParserHelper)\.' | egrep -z -v '^Source/cm_sha2' | egrep -z -v '^Source/(kwsys|CursesDialog/form)/' | egrep -z -v '^Utilities/(KW|cm).*/' | egrep -z -v '^Tests/Module/GenerateExportHeader' | egrep -z -v '^Tests/RunCMake/CommandLine/cmake_depends/test_UTF-16LE.h' | xargs -0 clang-format -i This selects source files that do not come from a third-party. Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de> | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -20/+20 |
| | | | | | | | | | | | | | | | | | 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/ \+$//' | ||||
* | ENH: make properties a bit more formal with documentation and chaining | Ken Martin | 2006-12-07 | 1 | -2/+8 |
| | |||||
* | ENH: do not use c++ comments in c code | Bill Hoffman | 2006-07-26 | 1 | -1/+1 |
| | |||||
* | BUG: remove command causing issues with mid build reruns of cmake on vs70 | Ken Martin | 2006-07-25 | 1 | -3/+0 |
| | |||||
* | ENH: trying a slight change | Ken Martin | 2006-07-25 | 1 | -3/+3 |
| | |||||
* | BUG: remove c++comments | Ken Martin | 2006-07-25 | 1 | -2/+2 |
| | |||||
* | BUG: temp fix | Ken Martin | 2006-07-24 | 1 | -1/+1 |
| | |||||
* | ENH: add more coverage | Ken Martin | 2006-07-24 | 1 | -0/+18 |
| | |||||
* | BUG: work around XCode issue | Ken Martin | 2006-07-21 | 1 | -1/+1 |
| | |||||
* | ENH: increase coverage in a couple places | Ken Martin | 2006-07-21 | 1 | -3/+31 |
| | |||||
* | ENH: add support for watcom wmake and wcl386 | Bill Hoffman | 2006-01-17 | 1 | -6/+4 |
| | |||||
* | ENH: increase coverage in loaded commands | Ken Martin | 2005-09-20 | 1 | -3/+19 |
| | |||||
* | ENH: Remove warning | Andy Cedilnik | 2004-05-03 | 1 | -0/+4 |
| | |||||
* | ENH: fix warnings in test | Bill Hoffman | 2004-05-03 | 1 | -7/+8 |
| | |||||
* | ENH: remove warnings in tests | Bill Hoffman | 2004-05-02 | 1 | -1/+1 |
| | |||||
* | ENH: More coverage | Andy Cedilnik | 2003-07-22 | 1 | -0/+81 |
| | |||||
* | new plugin API | Ken Martin | 2002-10-08 | 1 | -1/+1 |
| | |||||
* | Some minor fixes for mac | Andy Cedilnik | 2002-09-23 | 1 | -3/+3 |
| | |||||
* | cleanup | Ken Martin | 2002-09-23 | 1 | -5/+1 |
| | |||||
* | removed c++ style comments | Ken Martin | 2002-09-20 | 1 | -4/+4 |
| | |||||
* | test passing CMAKE_FLAGS | Ken Martin | 2002-09-18 | 1 | -0/+2 |
| | |||||
* | added Destructor | Ken Martin | 2002-09-17 | 1 | -0/+10 |
| | |||||
* | load command test | Ken Martin | 2002-09-16 | 1 | -0/+62 |