summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* CUDA: State that cuda has preprocessor output and can generate assembly.Robert Maynard2016-11-142-5/+5
| | | | We can consider PTX code to be a form of assembly.
* CUDA: Add support language levels (98/11)Robert Maynard2016-11-142-0/+6
|
* CMake Nightly Date StampKitware Robot2016-11-141-1/+1
|
* CMake Nightly Date StampKitware Robot2016-11-131-1/+1
|
* CMake Nightly Date StampKitware Robot2016-11-121-1/+1
|
* Merge topic 'cdash_version_check'Brad King2016-11-115-77/+4
|\ | | | | | | | | | | d3633731 Do not query CDash for version f725b20b Update tests that expect uncompressed output
| * Do not query CDash for versionZack Galbreath2016-11-085-77/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This check was not functioning properly for the following reasons: * The "DropSite" and "DropLocation" CTest Configurations do not get set until ctest_submit() is called. So if ctest_submit() was not called before ctest_test() we would end up with uncompressed output, even if the CDash server was new enough to support this feature. * CDash's API is now versioned. The current location to query is now /api/v1/getversion.php, not /api/getversion.php. As a result of these issues, CTest would not compress test/memcheck output when it should. Rather than fix this check, we now assume that CTest is communicating with a new enough version of CDash. This behavior can be controlled through the use of the --no-compress-output command-line argument.
* | Merge topic 'vs_targets_file_as_library'Brad King2016-11-112-5/+128
|\ \ | | | | | | | | | | | | 883bd34a VS: Treat libraries ending in `.targets` as msbuild imports
| * | VS: Treat libraries ending in `.targets` as msbuild importsSoji Yamakawa2016-11-092-5/+128
| | | | | | | | | | | | | | | | | | | | | Generate `<Import Project="..." .../>` to import the `.targets` files into `.vcxproj` files. Closes: #16340
* | | Merge topic 'ctest_memcheck_defect_count'Brad King2016-11-116-3/+50
|\ \ \ | | | | | | | | | | | | | | | | 3a523eec ctest_memcheck: Add DEFECT_COUNT option to capture defect count
| * | | ctest_memcheck: Add DEFECT_COUNT option to capture defect countBetsy McPhail2016-11-096-3/+50
| | | |
* | | | CMake Nightly Date StampKitware Robot2016-11-111-1/+1
| | | |
* | | | Merge topic 'import-librhash'Brad King2016-11-1016-1944/+180
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cd8a57ae Add option to build CMake against a system librhash 71180fc8 FindLibRHash: Add module to find the librhash package 3216e94c Remove unused cm_sha2 infrastructure 5420278d Port hash computation to cmCryptoHash 9a596b33 cmCryptoHash: Re-implement in terms of librhash 47f91a61 cmCryptoHash: Avoid using subclasses at client sites d0ff3e70 librhash: Port to KWIML for ABI and integer type information 465a85fb librhash: Avoid signed left-shift overflow fc2cb74f librhash: Implement bswap_32 as a function even in strict C90 mode 0bd333bc librhash: Implement bswap_64 even in strict C90 mode 7189d62c librhash: Use __builtin_bswap{32,64} on Clang af7ebf8a librhash: Install COPYING file with CMake documentation bb01f20e librhash: Disable warnings to avoid changing 3rd party code 31bb727f librhash: Build the library within CMake 53048afa librhash: Remove source fragments not needed for CMake 5cb1b345 Merge branch 'upstream-librhash' into import-librhash ...
| * | | | FindLibRHash: Add module to find the librhash packageBrad King2016-11-101-0/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add it to a private source directory that is not installed so that we can use it for building CMake itself. This will allow it to mature before being distributed publicly.
| * | | | Remove unused cm_sha2 infrastructureBrad King2016-11-105-1800/+0
| | | | | | | | | | | | | | | | | | | | | | | | | All clients of `cm_sha2` have been ported to `cmCryptoHash`, which now uses librhash internally.
| * | | | Port hash computation to cmCryptoHashBrad King2016-11-108-60/+34
| | | | | | | | | | | | | | | | | | | | | | | | | Avoid using KWSys MD5 or `cm_sha2` and use the `cmCryptoHash` abstraction instead.
| * | | | cmCryptoHash: Re-implement in terms of librhashBrad King2016-11-102-85/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Offer direct construction with an enumeration of supported algorithms. Also expose the Initialize/Append/Finalize steps publicly and add a FinalizeHex method.
| * | | | cmCryptoHash: Avoid using subclasses at client sitesBrad King2016-11-101-4/+4
| | | | | | | | | | | | | | | | | | | | Use only the main `cmCryptoHash` interface.
| * | | | librhash: Build the library within CMakeBrad King2016-11-101-0/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update `ustd.h` to include KWSys Large File Support configuration so that consistent stream libraries are used (on AIX with XL). Add a `cm_rhash.h` header to include the CMake-provided copy of the `rhash.h` header from CMake sources.
* | | | Merge topic 'autorcc-only-no-rebuild'Brad King2016-11-101-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | e4232b82 QtAutogen: Do not re-generate AUTORCC outputs on every build
| * | | | QtAutogen: Do not re-generate AUTORCC outputs on every buildBrad King2016-11-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring in commit v3.6.0-rc1~134^2~10 (Autogen: Split out moc file generation code to dedicated method, 2016-04-18) removed the unconditional creation of the `<target>_automoc.cpp` file. Now it is generated only when `AUTOMOC` is enabled. However, if this file is not created then our internal `GenerateAll` setting is enabled on every build, causing `AUTORCC` to re-generate its file(s) every time. Fix the `GenerateAll` setting to be used only for when autogen settings change. The old logic was left from when we had only automoc. Closes: #16413
| * | | | CMake 3.7.0-rc3v3.7.0-rc3Brad King2016-11-041-1/+1
| | | | |
| * | | | Merge branch 'cmake-server-handshake-improvements' into releaseBrad King2016-10-282-63/+99
| |\ \ \ \
| * \ \ \ \ Merge branch 'cmake-server-message-quoting' into releaseBrad King2016-10-241-2/+2
| |\ \ \ \ \
| * | | | | | Ninja: Use binary dir for `$subdir/all` targetsAlexis Murzeau2016-10-242-29/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The targets added by commit v3.6.0-rc1~240^2~2 (Ninja: Add `$subdir/all` targets, 2016-03-11) use as `$subdir` the relative path from the top of the source tree to the current source directory. This is not correct when using `add_subdirectory(test test_bin)`. Instead we need to use the relative path from the top of the binary tree to the current binary directory as was done for related targets by commit v3.7.0-rc1~268^2 (Ninja: Add `$subdir/{test,install,package}` targets, 2016-08-05).
| * | | | | | CMake 3.7.0-rc2v3.7.0-rc2Brad King2016-10-191-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-101-1/+1
| | | | | | |
* | | | | | | Merge topic 'update-kwsys'Brad King2016-11-0972-13666/+11539
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 95a97a40 Merge branch 'upstream-KWSys' into update-kwsys 773b36e5 KWSys 2016-11-09 (18c65411)
| * | | | | | | Merge branch 'upstream-KWSys' into update-kwsysBrad King2016-11-0972-13666/+11539
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | * upstream-KWSys: KWSys 2016-11-09 (18c65411)
* | | | | | | Merge topic 'imported-interface-libname'Brad King2016-11-096-19/+82
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 09cda9d5 Allow imported INTERFACE libraries to specify a link library name 1d1f1eeb cmTarget: Refactor GetMappedConfig to choose location property up front 479932fa cmTarget: Add comment clarifying interface library special case 925e4270 cmTarget: Clarify comments in GetMappedConfig
| * | | | | | | Allow imported INTERFACE libraries to specify a link library nameBrad King2016-11-096-13/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an `IMPORTED_LIBNAME[_<CONFIG>]` target property to specify a library name to be placed on the link line in place of an interface library since it has no library file of its own. Restrict use of the property to imported `INTERFACE` libraries. This will be particularly useful for find modules that need to provide imported libraries from system SDKs where the full path to the library file is not known. Now such find modules will be able to provide an imported interface library and set `IMPORTED_LIBNAME` to refer to the SDK library by name. Issue: #15267
| * | | | | | | cmTarget: Refactor GetMappedConfig to choose location property up frontBrad King2016-11-031-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Store the `IMPORTED_LOCATION` property name in a variable up front to avoid duplicating the string literal.
| * | | | | | | cmTarget: Add comment clarifying interface library special caseBrad King2016-11-031-0/+2
| | | | | | | |
| * | | | | | | cmTarget: Clarify comments in GetMappedConfigBrad King2016-11-031-3/+3
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Clarify comments explaining the availability of a target location (file on disk) to distinguish this from the existence of the target.
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-091-1/+1
| |/ / / / / |/| | | | |
* | | | | | Merge topic 'include-what-you-use'Brad King2016-11-08140-442/+660
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2e620f0b Fix several include-what-you-use findings
| * | | | | | Fix several include-what-you-use findingsDaniel Pfeifer2016-11-08140-442/+660
| | | | | | |
* | | | | | | Merge topic 'clang-tidy'Brad King2016-11-084-8/+8
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0cd654c8 cmGeneratorTarget: Correctly set FortranModuleDirectoryCreated bac93dcf cmGeneratorTarget: Don't assing a bool to a string 1e994985 cmGlobalNinjaGenerator: Suppress clang-tidy warning 5ae3966d cmCTestSubmitHandler: Remove redundant c_str() 443180fb cmCPluginAPI: Fix clang-tidy findings
| * | | | | | | cmGeneratorTarget: Correctly set FortranModuleDirectoryCreatedDaniel Pfeifer2016-11-051-0/+1
| | | | | | | |
| * | | | | | | cmGeneratorTarget: Don't assing a bool to a stringDaniel Pfeifer2016-11-051-1/+0
| | | | | | | |
| * | | | | | | cmGlobalNinjaGenerator: Suppress clang-tidy warningDaniel Pfeifer2016-11-051-2/+2
| | | | | | | |
| * | | | | | | cmCTestSubmitHandler: Remove redundant c_str()Daniel Pfeifer2016-11-051-1/+1
| | | | | | | |
| * | | | | | | cmCPluginAPI: Fix clang-tidy findingsDaniel Pfeifer2016-11-051-4/+4
| |/ / / / / /
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-081-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-071-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-061-1/+1
|/ / / / / /
* | | | | | CMake Nightly Date StampKitware Robot2016-11-051-1/+1
| | | | | |
* | | | | | Merge topic 'vs-flag-order'Brad King2016-11-041-2/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4cb5d335 VS: Place source-specific AdditionalOptions after target-wide flags
| * | | | | | VS: Place source-specific AdditionalOptions after target-wide flagsBrad King2016-11-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flags specified in the `COMPILE_FLAGS` source-file property should be placed after those in target-wide properties so that those on individual source files can override those on the whole target. This is already done by most generators but was not implemented correctly for VS 2010 and above. Closes: #16400
* | | | | | | CMake Nightly Date StampKitware Robot2016-11-041-1/+1
| |/ / / / / |/| | | | |