Skip to content
Snippets Groups Projects
  1. Nov 12, 2013
  2. Oct 16, 2013
    • Matt McCormick's avatar
      TestDriver.cxx.in: Untrusted array index read. · 7eddefd8
      Matt McCormick authored
      As reported by Coverity Scan, if the configured file contains a #include,
      
        Untrusted array index read
        The array index could be controlled by an attacker, leading to reads outside
        the bounds of the array.
        In main: Read from array at index computed using an unscrutinized value from
        an untrusted source (CWE-129)
      
        CID 1081283 (#1 of 1): Untrusted array index read (TAINTED_SCALAR)
        25. tainted_data: Using tainted variable "testToRun" as an index into an array
        "cmakeGeneratedFunctionMapEntries".
      7eddefd8
  3. Oct 17, 2012
  4. Aug 13, 2012
    • Kitware Robot's avatar
      Convert CMake-language commands to lower case · 77543bde
      Kitware Robot authored and Brad King's avatar Brad King committed
      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
      77543bde
    • Kitware Robot's avatar
      Remove trailing whitespace from most CMake and C/C++ code · 7bbaa428
      Kitware Robot authored and Brad King's avatar Brad King committed
      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/ \+$//'
      7bbaa428
  5. Feb 25, 2012
    • Eric Noulard's avatar
      Update CPackConfig template. · 6ad0f040
      Eric Noulard authored
      Remove variable documentation from the template in order to
      avoid multiple location for doc update. Users can now retrieve
      CPACK_xxx variable documentation from the command line.
      6ad0f040
  6. Sep 09, 2011
  7. May 28, 2010
  8. Jan 28, 2010
  9. Oct 28, 2009
    • Brad King's avatar
      Use per-config output dir in VS 6 templates · 90b8164e
      Brad King authored
      This commit removes use of configuration-less cmTarget::GetDirectory()
      by the VS 6 generator (except for compatibility with user templates).
      We replace OUTPUT_DIRECTORY_<CONFIG> tokens in the templates using the
      per-configuration result of cmTarget::GetDirectory(config).
      90b8164e
  10. Oct 09, 2009
  11. Oct 05, 2009
    • Brad King's avatar
      Add '#!/bin/sh' to cygwin-package.sh · 82c8b48c
      Brad King authored
      This commit adds '#!/bin/sh' to the top of the cygwin-package.sh.in
      script.  All executable interpreted scripts should have this directive.
      
      Patch from Modestas Vainius.  See issue #9659.
      82c8b48c
  12. Oct 01, 2009
  13. Sep 25, 2009
    • Brad King's avatar
      Fix Windows GUI implib and image version in VS 6 · 4867b712
      Brad King authored
      These commits:
      
        Adding image version number (major.minor) property to
        windows binaries.
      
        Added support for import libraries created by executable
        and module targets.
      
      added content to Templates/EXEHeader.dsptemplate that should also have
      been added to Templates/EXEWinHeader.dsptemplate for the VS6 generator.
      This commit corrects the error.  See issue #9586.
      4867b712
  14. Jul 24, 2009
    • Brad King's avatar
      ENH: Install all Modules and Templates · 071ce33e
      Brad King authored
      This removes the file-wise installation rules for Modules and Templates
      and instead installs the whole directories.  This approach is much less
      error-prone.  The old approach was left from before CMake had the
      install(DIRECTORY) command.
      071ce33e
  15. Jul 03, 2009
    • Brad King's avatar
      BUG: Avoid cmTarget::GetDirectory for utilities · 43669f0e
      Brad King authored
      Since utility targets have no main output files like executables or
      libraries, they do not define an output directory.  This removes a call
      to cmTarget::GetDirectory from cmLocalVisualStudio{6,7}Generator for
      such targets.
      43669f0e
  16. Dec 09, 2008
  17. Dec 03, 2008
  18. Nov 25, 2008
  19. Sep 10, 2008
  20. Sep 09, 2008
  21. Feb 15, 2008
    • David Cole's avatar
      ENH: Add code to support calling the VS reload macro from Visual Studio 7.1... · ca2a16c0
      David Cole authored
      ENH: Add code to support calling the VS reload macro from Visual Studio 7.1 and 9.0 in addition to 8.0 sp1... Make new macros file with VS 7.1 so that it can be read by 7.1 and later. VS 7.1 does not appear to run the macros while a build is in progress, but does not return any errors either, so for now, the reload macro is not called when using 7.1. If I can figure out how to get 7.1 to execute the macro, I will uncomment the code in cmGlobalVisualStudio71Generator::GetUserMacrosDirectory() to activate executing the macros in VS 7.1, too.
      ca2a16c0
  22. Nov 21, 2007
  23. Nov 19, 2007
  24. Nov 16, 2007
    • David Cole's avatar
      ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual... · 867de7fc
      David Cole authored
      ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual Studio macro to reload a solution file automatically if CMake makes changes to .sln files or .vcproj files. Add code to call the macro automatically for any running Visual Studio instances with the .sln file open at the end of the Visual Studio Generate call. Only call the macro if some .sln or .vcproj file changed during Generate. Also, add handling for REG_EXPAND_SZ type to SystemTools::ReadRegistryValue - returned string has environment variable references expanded.
      867de7fc
  25. Nov 09, 2007
  26. Oct 29, 2007
  27. May 09, 2007
    • Alexander Neundorf's avatar
      · 7f115367
      Alexander Neundorf authored
      ENH: now target names can be used in add_custom_command() and
      add_custom_target() as COMMAND, and cmake will recognize them and replace
      them with the actual output path of these executables. Also the dependency
      will be added automatically. Test included.
      ENH: moved TraceVSDependencies() to the end of GlobalGenerator::Configure(),
      so it is done now in one central place
      
      Alex
      7f115367
  28. Mar 19, 2007
    • Brad King's avatar
      ENH: Added support for import libraries created by executable and module... · fc7c4334
      Brad King authored
      ENH: Added support for import libraries created by executable and module targets.  The module import libraries should never be used but some windows compilers always create them for .dll files since there is no distinction from shared libraries on that platform.  The executable import libraries may be used to create modules that when loaded bind to symbols from the executables.  This is an enhancement related to bug#4210 though not requested by it explicitly.
      fc7c4334
  29. Mar 09, 2007
  30. Oct 16, 2006
  31. Apr 28, 2006
  32. Apr 20, 2006
  33. Apr 19, 2006
  34. Apr 18, 2006
  35. Apr 14, 2006
  36. Mar 01, 2006
  37. Feb 28, 2006
Loading