Skip to content
Snippets Groups Projects
  1. Feb 18, 2015
  2. Nov 15, 2013
    • Julien Malik's avatar
      STYLE: Remove CMake-language block-end arguments · e84f23c4
      Julien Malik authored
      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.
      
      NOTE: MUST USE GNU compliant version of sed
      Run the following shell code (Adopted from Brad King scripts for CMake):
      
      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' \
         | xargs sed -i -f convert.sed \
      && rm convert.sed
      
      
      This has been adapted from ITK commit e52dbe7fa476f6283c9b9d1507fca052355113a4
      e84f23c4
    • Julien Malik's avatar
      STYLE: switch all CMake files to lower case format · c89f9a38
      Julien Malik authored
      This modification is based according to
      the process described in ITK/Utilities/Maintenance/HowToCreateTheCMakeCaseConversion.txt
      c89f9a38
  3. Jul 08, 2013
  4. Jul 10, 2012
  5. Apr 01, 2010
  6. Feb 21, 2010
  7. Jan 22, 2010
  8. Jan 17, 2010
  9. Jun 03, 2009
  10. Jun 02, 2009
  11. Feb 13, 2009
  12. Dec 06, 2008
  13. Nov 17, 2008
  14. Sep 18, 2008
  15. May 07, 2008
  16. Jan 25, 2008
  17. Aug 23, 2006
  18. Jul 03, 2006
  19. Jun 29, 2006
  20. May 18, 2006
  21. Apr 06, 2006
  22. Jan 16, 2006
  23. Jan 05, 2006
Loading