summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'improve_ctest_memcheck_output'Brad King2016-11-178-17/+43
|\ | | | | | | | | f0d50957 ctest: Improve output for `-T memcheck`
| * ctest: Improve output for `-T memcheck`Bill Hoffman2016-11-178-17/+43
| | | | | | | | | | Show how many defects each test that had a defect produced. Also tell the user where to find the full log files.
* | Merge topic 'update-kwsys'Brad King2016-11-172-1/+8
|\ \ | | | | | | | | | | | | | | | 451e9f93 Merge branch 'upstream-KWSys' into update-kwsys 572ac897 KWSys 2016-11-16 (a0c60eec)
| * \ Merge branch 'upstream-KWSys' into update-kwsysBrad King2016-11-162-1/+8
| |\ \ | | | | | | | | | | | | | | | | * upstream-KWSys: KWSys 2016-11-16 (a0c60eec)
| | * | KWSys 2016-11-16 (a0c60eec)KWSys Upstream2016-11-162-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code extracted from: http://public.kitware.com/KWSys.git at commit a0c60eec7cdbe7b5d0196bfc5b69bd969fe8786f (master). Upstream Shortlog ----------------- Brad King (2): 818405fc Fix typo in clang-format script documentation a0c60eec Terminal: Add tmux to VT100 color support whitelist Matt Leotta (1): 6a642f72 SystemInformation: Skip loopback devices in search for FQDN
* | | | CMake Nightly Date StampKitware Robot2016-11-171-1/+1
|/ / /
* | | Merge topic 'ccmake_fix_print_keys'Brad King2016-11-162-49/+46
|\ \ \ | | | | | | | | | | | | | | | | | | | | 5ca4abb2 ccmake: Correctly display edit mode and associated keys a9562eac ccmake: Add missing spaces to match the previous text length
| * | | ccmake: Correctly display edit mode and associated keysSylvain Joubert2016-11-152-49/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specific widgets can implement `PrintKeys` but their effects were hidden by the main widget `PrintKeys`. Fix this to give the user a better hint about the edit mode status. Closes: #13757
| * | | ccmake: Add missing spaces to match the previous text lengthSylvain Joubert2016-11-151-1/+1
| | | | | | | | | | | | | | | | There was a "glitch" leaving "it" on the screen
* | | | Merge topic 'test_vs_targets_file_reference'Brad King2016-11-165-0/+61
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | c9560a9a Tests: Extend VS10Project to cover `.targets` file linking
| * | | | Tests: Extend VS10Project to cover `.targets` file linkingSoji Yamakawa2016-11-155-0/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With VS generators for 2010 and above, passing a `.targets` file to `target_link_libraries` is expected to generate content in the `.vcxproj` file to import the targets file. Add a test to cover this.
* | | | | Merge topic 'vs-suppress-upgrade-prompt'Brad King2016-11-161-0/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 7c8f7737 VS: Disable project upgrade prompt on VS 2013 and above
| * | | | | VS: Disable project upgrade prompt on VS 2013 and aboveErik Christensen2016-11-151-0/+10
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When opening projects in Visual Studio that specify an older toolset version, a prompt is displayed the first time asking the user whether to upgrade the projects. This is meant for project files that are maintained manually and updated through the IDE. For CMake-generated projects this does not make sense, so add content to tell VS not to upgrade.
* | | | | Merge topic 'msvc-no-explicit-_DEBUG'Brad King2016-11-161-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 6d0b5ff6 MSVC: Do not define _DEBUG explicitly when using /MDd
| * | | | | MSVC: Do not define _DEBUG explicitly when using /MDdBrad King2016-11-151-2/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the latter flag the compiler automatically defines `_DEBUG`: https://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx Closes: #16430
* | | | | Merge topic 'Empty_CTestTestfile_on_BUILD_TESTING_OFF'Brad King2016-11-161-4/+7
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | ae4cfa8b Remove CTestTestfile.cmake when BUILD_TESTING is OFF
| * | | | | Remove CTestTestfile.cmake when BUILD_TESTING is OFFSylvain Joubert2016-11-151-4/+7
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When disabling BUILD_TESTING after a previous configure, the `CTestTestfile.cmake` was left unchanged. As a result, ctest would see the tests while the user disabled testing. Now when BUILD_TESTING is OFF any existing `CTestTestfile.cmake` is removed ensuring an empty test list.
* | | | | Merge topic 'childEncoding'Brad King2016-11-1621-55/+493
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f55fcdc8 CTest: Use UTF-8 encoding for output from Git 40bd42df Add Encoding option for RunChild, RunMakeCommand and RunProcess 595feb32 Windows: Encode child process output to internally-used encoding 96103972 Add cmProcessOutput class to be used for decoding text data 92c865b8 cmCTestBuildHandler: Use size_t in ProcessBuffer length argument
| * | | | | CTest: Use UTF-8 encoding for output from GitDāvis Mosāns2016-11-151-6/+11
| | | | | |
| * | | | | Add Encoding option for RunChild, RunMakeCommand and RunProcessDāvis Mosāns2016-11-1412-27/+47
| | | | | |
| * | | | | Windows: Encode child process output to internally-used encodingDāvis Mosāns2016-11-149-26/+196
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Typically Windows applications (eg. MSVC compiler) use current console's codepage for output to pipes so we need to encode that to our internally-used encoding (`KWSYS_ENCODING_DEFAULT_CODEPAGE`).
| * | | | | Add cmProcessOutput class to be used for decoding text dataDāvis Mosāns2016-11-144-1/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows to decode text data we receive from external process which uses external encoding to our internal encoding.
| * | | | | cmCTestBuildHandler: Use size_t in ProcessBuffer length argumentBrad King2016-11-142-2/+2
| | | | | |
* | | | | | Merge topic 'armcc-response-file-flag'Brad King2016-11-161-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | d608e85c ARMCC: Fix flag used for response files
| * | | | | | ARMCC: Fix flag used for response filesBen Boeckel2016-11-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ARMCC does not use the `@` sigil to indicate response files, but instead the `--via=` flag. See the documentation here: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491h/CHDCIEGC.html Fixes: #16425
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-161-1/+1
| |_|_|/ / / |/| | | | |
* | | | | | Merge branch 'release'Brad King2016-11-150-0/+0
|\ \ \ \ \ \
| * \ \ \ \ \ Merge branch 'cmake-server-fix-16423' into releaseBrad King2016-11-142-28/+77
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'cmake-server-fix-16422' into releaseBrad King2016-11-141-1/+1
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'FindBISON-fix-rebuild' into releaseBrad King2016-11-141-1/+1
| |\ \ \ \ \ \ \ \ | | |_|_|/ / / / / | |/| | | | | | |
* | | | | | | | | Merge topic 'add-SHA-3'Brad King2016-11-1530-27/+553
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f636d1e7 Help: Add notes for topic 'add-SHA-3' cb5dba8e Tests: Add SHA-3 algorithm coverage to CPack checksum test a9fa6099 ExternalProject: Add support for SHA-3 algorithms b4ffd26f ExternalData: Add support for SHA-3 algorithms 60939702 file: Add support for SHA-3 algorithms 92f95aed string: Add support for SHA-3 algorithms c326209f cmCryptoHash: Add support for SHA-3 algorithms 979e8ba6 Help: De-duplicate and spell out supported hash algorithms 7a79f7e3 librhash: Activate SHA-3 implementation 87584b5e Merge branch 'upstream-librhash' into add-SHA-3 7fcbd47e librhash 2016-11-06 (de79828d) c50c32a3 librhash: Update import script to add SHA-3 implementation
| * | | | | | | | | Help: Add notes for topic 'add-SHA-3'Brad King2016-11-111-0/+4
| | | | | | | | | |
| * | | | | | | | | Tests: Add SHA-3 algorithm coverage to CPack checksum testBrad King2016-11-111-1/+1
| | | | | | | | | |
| * | | | | | | | | ExternalProject: Add support for SHA-3 algorithmsBrad King2016-11-111-1/+1
| | | | | | | | | |
| * | | | | | | | | ExternalData: Add support for SHA-3 algorithmsBrad King2016-11-114-2/+10
| | | | | | | | | |
| * | | | | | | | | file: Add support for SHA-3 algorithmsBrad King2016-11-106-1/+23
| | | | | | | | | |
| * | | | | | | | | string: Add support for SHA-3 algorithmsBrad King2016-11-107-1/+31
| | | | | | | | | |
| * | | | | | | | | cmCryptoHash: Add support for SHA-3 algorithmsBrad King2016-11-102-8/+29
| | | | | | | | | |
| * | | | | | | | | Help: De-duplicate and spell out supported hash algorithmsBrad King2016-11-103-7/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Spell out the supported algorithms in a definition list in the `string(<HASH>)` command documentation. Revise the `file(<HASH>)` command and CPack module documentation to reference it instead of duplicating the list.
| * | | | | | | | | librhash: Activate SHA-3 implementationBrad King2016-11-103-5/+15
| | | | | | | | | |
| * | | | | | | | | Merge branch 'upstream-librhash' into add-SHA-3Brad King2016-11-103-1/+411
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream-librhash: librhash 2016-11-06 (de79828d)
| | * | | | | | | | | librhash 2016-11-06 (de79828d)librhash upstream2016-11-103-1/+411
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code extracted from: https://github.com/rhash/rhash.git at commit de79828d01d5a7d86cb77edb0569d75bfed6d2dc (master).
| * | | | | | | | | | librhash: Update import script to add SHA-3 implementationBrad King2016-11-101-0/+2
| | | | | | | | | | |
* | | | | | | | | | | Merge topic 'UseSWIG_USE_BUILD_SHARED_LIBS'Brad King2016-11-151-1/+3
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d5b56dd1 UseSWIG: Add USE_BUILD_SHARED_LIBS to accepted values for the TYPE arg
| * | | | | | | | | | | UseSWIG: Add USE_BUILD_SHARED_LIBS to accepted values for the TYPE argDaniele E. Domenichelli2016-11-141-1/+3
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new signature is SWIG_ADD_LIBRARY(<name> [TYPE <SHARED|MODULE|STATIC|USE_BUILD_SHARED_LIBS>] LANGUAGE <language> SOURCES <file>... )
* | | | | | | | | | | Merge topic 'ExternalProject-fix-UPDATE_DISCONNECTED'Brad King2016-11-152-2/+3
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4deaa25f ExternalProject: Fix UPDATE_DISCONNECTED with empty update steps
| * | | | | | | | | | | ExternalProject: Fix UPDATE_DISCONNECTED with empty update stepsBrad King2016-11-152-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When `UPDATE_DISCONNECTED` is enabled the post-update steps unconditionally depend on a `skip-update` step instead of `update`. Make `skip-update` available whenever `UPDATE_DISCONNECTED` is enabled, whether there is a real update step or not. Closes: #16428
* | | | | | | | | | | | Merge topic 'cmake-server-fix-16423'Brad King2016-11-152-28/+77
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 516a2cd3 server-mode: Reset GlobalGenerator before configure
| * | | | | | | | | | | server-mode: Reset GlobalGenerator before configureTobias Hunger2016-11-142-28/+77
| | |_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is what cmake-gui also does to avoid CMake crashing on repeated attempts to configure it. Fixes #16423.
* | | | | | | | | | | Merge topic 'cmake-server-fix-16422'Brad King2016-11-151-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d0a707b3 server-mode: Prevent possible crash when watching directories