https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
1f77a70 file: Teach STRINGS to support UTF-16 and UTF-32 encodings 27 January 2015, 16:30:26 UTC
19e57a4 Merge topic 'tests-RunCMake-make-program' 23bf98fc Tests/RunCMake: Honor CMAKE_MAKE_PROGRAM 26 January 2015, 15:28:30 UTC
3747337 Merge topic 'backport-kwsys-directory-check-opendir' 482c8475 KWSys Directory: Check opendir return value before using it (#15367) 26 January 2015, 15:28:28 UTC
8def825 Merge topic 'try-run-link-libraries' d0adcccb try_run: Add tests for LINK_LIBRARIES with mock libraries. 223c5cb7 try_run: Add test for bad link libraries. e2b1f058 try_run: Add support for LINK_LIBRARIES option. 26 January 2015, 15:28:25 UTC
d0adccc try_run: Add tests for LINK_LIBRARIES with mock libraries. Extend the ExportImport test to try using an imported library with try_run. 26 January 2015, 15:05:59 UTC
223c5cb try_run: Add test for bad link libraries. Based off the corresponding try_compile test. 26 January 2015, 15:05:30 UTC
e2b1f05 try_run: Add support for LINK_LIBRARIES option. Most functionality is already implemented in Source/cmCoreTryCompile.{h,cxx}. Document and improve argument parsing. This functionality is already being used by a number of modules, like CheckCSourceCompiles.cmake, but it is not documented. 26 January 2015, 15:05:26 UTC
7fefb97 Merge topic 'FindCUDA-cusolver' d5d3d0c9 Help: Add notes for topic 'FindCUDA-cusolver' 26 January 2015, 14:51:59 UTC
a65f794 Merge topic 'ExternalProject-switch-ALWAYS' a4605973 ExternalProject: Allow ALWAYS step property to be switched (#15368) 26 January 2015, 14:51:57 UTC
cb243cc Merge topic 'update-kwsys' 391748d5 Merge branch 'upstream-kwsys' into update-kwsys 0b9aad75 KWSys 2015-01-23 (d4e7f08e) 26 January 2015, 14:51:55 UTC
dfdcc42 Merge topic 'ninja-rsp_file-calculation' 097e26f4 ninja: use the minimum of all command line length limits (#14892) 26 January 2015, 14:51:53 UTC
1337576 Merge topic 'curl-default-cainfo' 0abd3e53 cmake: Use a default CA path when not using system curl 6ce346c5 curl: Add CURL_CA_PATH option to CMake build process 26 January 2015, 14:51:50 UTC
e71c35f CMake Nightly Date Stamp 26 January 2015, 05:01:09 UTC
5a9d54a CMake Nightly Date Stamp 25 January 2015, 05:01:08 UTC
391748d Merge branch 'upstream-kwsys' into update-kwsys 24 January 2015, 12:38:51 UTC
0b9aad7 KWSys 2015-01-23 (d4e7f08e) Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ d4e7f08e | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' b33e7b96..d4e7f08e Brad King (1): d4e7f08e Directory: Check opendir return value before using it Change-Id: I3485ec9c7ad3b7f25df610d4d1898c5150a995f0 24 January 2015, 12:38:43 UTC
23bf98f Tests/RunCMake: Honor CMAKE_MAKE_PROGRAM If tests are using an explicit make program, pass it through to RunCMake tests so that any that actually do build use the expected tool. 24 January 2015, 12:35:44 UTC
97502ba CMake Nightly Date Stamp 24 January 2015, 05:01:09 UTC
a460597 ExternalProject: Allow ALWAYS step property to be switched (#15368) Within an existing build tree, if the stamp for a step already exists when one activates the ALWAYS option, we still want it to always build. Remove the step stamp file during CMake configuration to ensure it does not exist when the ALWAYS option is enabled. 23 January 2015, 18:38:59 UTC
482c847 KWSys Directory: Check opendir return value before using it (#15367) In Directory::GetNumberOfFilesInDirectory add a missing check for NULL. 23 January 2015, 18:19:07 UTC
d5d3d0c Help: Add notes for topic 'FindCUDA-cusolver' 23 January 2015, 15:58:51 UTC
097e26f ninja: use the minimum of all command line length limits (#14892) When choosing whether to use a response file, consider several possible command line length limits for the current operating system, and choose the smallest. 23 January 2015, 15:54:13 UTC
154bf8d Merge topic 'INTERFACE_SYSTEM_INCLUDE_DIRECTORIES-update' 85857e6d Help: Clarify INTERFACE_SYSTEM_INCLUDE_DIRECTORIES documentation. ee38062b IncludeDirectories: Respect SYSTEM flag when using CONFIG genex. 23 January 2015, 15:50:31 UTC
103f77e Merge topic 'test-complex-remove-bad-indentation' 560b3e9f Tests: Remove incorrect indentation from Complex test comment 23 January 2015, 15:50:28 UTC
7961171 Merge topic 'FindCUDA-more-advanced-cache-entries' 005b409d FindCUDA: Mark more cache variables as advanced 23 January 2015, 15:50:26 UTC
29ef8fb Merge topic 'update-curl' 53df9bce curl: Add README-CMake.txt 23 January 2015, 15:50:24 UTC
9f559a2 Merge topic 'GNU-4.4-compile-features' 374a66b5 Features: Blacklist raw string literals test for GNU 4.4 23 January 2015, 15:50:22 UTC
0bda22f Merge topic 'FeatureSummary-fix-doc-typo' b79d8f29 FeatureSummary: Fix bracket in documentation. 23 January 2015, 15:50:19 UTC
6e66fb6 Merge topic 'add-missing-variable-docs' bebdb454 Help: add missing MINGW variable documentation 23 January 2015, 15:50:17 UTC
b79d8f2 FeatureSummary: Fix bracket in documentation. 23 January 2015, 14:02:48 UTC
0abd3e5 cmake: Use a default CA path when not using system curl When using system curl, we trust it to be configured with desired CA certs. When using our own build of curl, we use os-configured CA certs on Windows and OS X. On other systems, try to achieve this by searching for common CA cert locations. According to a brief investigation, the curl packages on popular Linux distros are currently configured as: * Arch: /etc/ssl/certs/ca-certificates.crt * Debian with OpenSSL: /etc/ssl/certs * Debian with GNU TLS: /etc/ssl/certs/ca-certificates.crt * Debian with NSS: /etc/ssl/certs/ca-certificates.crt * Fedora: /etc/pki/tls/certs/ca-bundle.crt * Gentoo with OpenSSL: /etc/ssl/certs * Gentoo without OpenSSL: /etc/ssl/certs/ca-certificates.crt Teach CMake and CTest to look for these paths and use them as a CA path or bundle when no other os-configured or user-specified CAs are available. 23 January 2015, 13:57:32 UTC
6ce346c curl: Add CURL_CA_PATH option to CMake build process Move CMAKE_USE_OPENSSL and CURL_CA_BUNDLE up to the top of CMake so that CMake's own sources can know their values. Add the CURL_CA_PATH option at the top and honor it as part of the curl build. 23 January 2015, 13:23:52 UTC
c99e19a CMake Nightly Date Stamp 23 January 2015, 05:01:16 UTC
85857e6 Help: Clarify INTERFACE_SYSTEM_INCLUDE_DIRECTORIES documentation. 22 January 2015, 23:15:02 UTC
ee38062 IncludeDirectories: Respect SYSTEM flag when using CONFIG genex. Update the Makefile and Ninja generators to use the config when requesting the include flags. 22 January 2015, 23:08:18 UTC
560b3e9 Tests: Remove incorrect indentation from Complex test comment 22 January 2015, 19:11:46 UTC
98bf613 Merge branch 'release' 22 January 2015, 18:22:35 UTC
005b409 FindCUDA: Mark more cache variables as advanced Mark variables pertaining to specific situations relevant to CUDA compilation as advanced since they are not part of normal usage. 22 January 2015, 16:44:05 UTC
c029894 Merge topic 'cdash_upload_file_mode' f3e0b6f1 CTestCoverageCollectGCOV: Add module to run gcov 6dd980e0 ctest_submit: Make CDASH_UPLOAD mode arguments more strict 5dc33f89 ctest_submit: Add CDASH_UPLOAD mode to upload files to CDash 22 January 2015, 16:16:45 UTC
f3e0b6f CTestCoverageCollectGCOV: Add module to run gcov Provide a function to run gcov and create a tarball of results. Since CDash tracks the md5sum of the files uploaded, use the --mtime option with "cmake -E tar" so that tar files could be created that would have the same md5sum with the same content. 22 January 2015, 16:15:54 UTC
53df9bc curl: Add README-CMake.txt Describe how to update curl from upstream. 22 January 2015, 15:00:04 UTC
57f4c83 Merge topic 'FindCUDA-cusolver' e56c9327 FindCUDA: Add cuSOLVER library from CUDA 7.0 22 January 2015, 14:50:42 UTC
3eda92d Merge topic 'update-kwsys' 7e468cd8 Merge branch 'upstream-kwsys' into update-kwsys 77444a7d KWSys 2015-01-20 (b33e7b96) 22 January 2015, 14:50:40 UTC
529293e Merge topic 'WriteCompilerDetectionHeader-tests' 3c0996c1 WCDH: Test that no C compiler features are defined for CXX compiler. 8dc0c976 WCDH: Fix the C_STANDARD property in the tests. 22 January 2015, 14:50:38 UTC
be2a74d Merge topic 'GNU-4.4-compile-features' 965a50dc Features: Fix GNU 4.4 and 4.5 C standard level flags 7f4154a4 Features: Fix CompileFeatures non-feature tests for space in path f40c19b5 Features: Fix CompileFeatures test for C non-features 22 January 2015, 14:50:36 UTC
374a66b Features: Blacklist raw string literals test for GNU 4.4 RedHat gcc 4.4.7-11 supports raw string literals, so simply blacklist the test for its rejection. 22 January 2015, 14:39:35 UTC
afe9921 CMake Nightly Date Stamp 22 January 2015, 05:01:09 UTC
40c11f0 Merge topic 'jsoncpp-third-party' 27c6da93 Add option to build CMake against a system jsoncpp 21 January 2015, 21:36:22 UTC
afd9983 Merge topic 'test-ctest_submit-fail-with-RunCMake' ef97cd85 Tests: Fix obscure RunCMake.CTestSubmit 'drop' case failures 76f7eb2e Tests: Extend RunCMake.CTestSubmit test to cover 'drop' failures 21 January 2015, 21:36:20 UTC
ef97cd8 Tests: Fix obscure RunCMake.CTestSubmit 'drop' case failures When curl is given a URL of the form '<something>://' it tries to resolve '<something>' as a host name. If the host happens to exist and have a server then the drop might actually appear to work. Instead use an explicit '-no-site-' host to ensure it cannot connect. Reported-by: Gilles Khouzam <Gilles.Khouzam@microsoft.com> 21 January 2015, 21:34:42 UTC
e56c932 FindCUDA: Add cuSOLVER library from CUDA 7.0 21 January 2015, 20:54:12 UTC
bebdb45 Help: add missing MINGW variable documentation 21 January 2015, 20:48:00 UTC
965a50d Features: Fix GNU 4.4 and 4.5 C standard level flags The C90 flags were only the "89" versions until GNU 4.5. The C11 flags were not introduced until GNU 4.6. 21 January 2015, 20:47:13 UTC
7f4154a Features: Fix CompileFeatures non-feature tests for space in path Fix the <lang>_non_features try_compile calls to work correctly when there is a space in the path. Otherwise they all fail due to the space instead of the lack of a feature. 21 January 2015, 20:42:08 UTC
f40c19b Features: Fix CompileFeatures test for C non-features Add a "feature_test.c" file corresponding to "feature_test.cpp" but for the C language. This source will be needed by C_non_features entries. 21 January 2015, 20:40:47 UTC
7e468cd Merge branch 'upstream-kwsys' into update-kwsys 21 January 2015, 14:15:44 UTC
77444a7 KWSys 2015-01-20 (b33e7b96) Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ b33e7b96 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 425fa73e..b33e7b96 Brad King (2): 57c3ef1d Suppress deprecation warnings for GetVersionEx on Intel compiler b33e7b96 FStream: Fix exception spec on our standard stream replacements Change-Id: I69044c5879a1ec4a5be59bdda05540c1eb65b197 21 January 2015, 14:15:40 UTC
f709776 CMake Nightly Date Stamp 21 January 2015, 05:01:10 UTC
57622bd CMake 3.1.1 20 January 2015, 16:04:44 UTC
9b4d434 Merge branch 'release' 20 January 2015, 16:03:53 UTC
27c6da9 Add option to build CMake against a system jsoncpp Create a CMAKE_USE_SYSTEM_JSONCPP option. 20 January 2015, 15:37:35 UTC
6dd980e ctest_submit: Make CDASH_UPLOAD mode arguments more strict Disallow mixing of arguments from different command signatures. Extend the RunCMake.CTestSubmit test to cover such error cases. 20 January 2015, 14:33:21 UTC
5dc33f8 ctest_submit: Add CDASH_UPLOAD mode to upload files to CDash This adds support for the new cdash API where arbitrary files can be uploaded to the CDash server. This CDash API communicates via json files so the json parser jsoncpp was added to the Utilities directory. 20 January 2015, 14:33:21 UTC
17cfa09 Merge topic 'cmake-labels-json' 0238d0c3 cmake: Generate an internal 'Labels.json' file next to 'Labels.txt' bda4f0b6 jsoncpp: Add headers to help CMake include in-source jsoncpp headers a02fbec5 jsoncpp: Drop doxygen comments that cause Clang warnings 20 January 2015, 14:31:59 UTC
0238d0c cmake: Generate an internal 'Labels.json' file next to 'Labels.txt' In each internal target directory we generate a "Labels.txt" file containing labels for that target and its sources, but it uses an internal format. In order to make the list of labels easier to publish, use a json format and call it "Labels.json". Since we now use jsoncpp headers, link CMakeLib to the jsoncpp library. 20 January 2015, 14:31:11 UTC
bda4f0b jsoncpp: Add headers to help CMake include in-source jsoncpp headers Add cm_jsoncpp_value.h and cm_jsoncpp_writer.h headers to include the CMake-provided copy of the json/value.h and json/writer.h headers from CMake sources. 20 January 2015, 14:28:59 UTC
a02fbec jsoncpp: Drop doxygen comments that cause Clang warnings Even though we disable warnings when building jsoncpp itself, including its headers from other CMake sources may still cause warnings. Update the code to remove these -Wdocumentation warnings. 20 January 2015, 14:28:28 UTC
1ef4e3a Merge topic 'cmake-E-tar-mtime' 3a60c899 cmake: Teach "-E tar" command a "--mtime=" option 90f9c427 cmake: Teach "-E tar" to report file name on failure to read from disk 20 January 2015, 14:20:12 UTC
770131c Merge topic 'doc-unsupported-compilers' a6a1adb5 Help: Document unsupported compilers in the release notes. 20 January 2015, 14:20:09 UTC
86b6cbe Merge topic 'find-package-mode-fix-multiarch' 48984958 CMakeFindPackageMode: Fix Debian multiarch default guess (#15250) 20 January 2015, 14:20:07 UTC
481c5fd Merge topic 'emacs-mode-fix-word-at-point' 3a147e1b cmake-mode.el: Re-add explicit call to require thingatpt 20 January 2015, 14:20:04 UTC
4970ac3 Merge topic 'xcode-target-sort' 9e0176e2 Xcode: Sort targets deterministically and with ALL_BUILD first (#15346) c0ff542c Xcode: Fix early termination on per-config source file error 20 January 2015, 14:19:55 UTC
cf17d41 Merge topic 'doc-virtual-override-specifiers-links' d8f93f6e Help: Link relevant documents for virtual override features (#15311) 20 January 2015, 14:19:52 UTC
70eb44b CMake Nightly Date Stamp 20 January 2015, 05:01:17 UTC
4457869 Merge branch 'doc-virtual-override-specifiers-links' into release 19 January 2015, 21:40:56 UTC
d8f93f6 Help: Link relevant documents for virtual override features (#15311) 19 January 2015, 21:38:06 UTC
a6a1adb Help: Document unsupported compilers in the release notes. 19 January 2015, 19:57:25 UTC
3a60c89 cmake: Teach "-E tar" command a "--mtime=" option Add an option to set the mtime of entries in a tarball so that one can create a tarball with a consistent content hash (e.g. MD5) for a given set of files regardless of their current timestamps on disk. This will be useful for submission of tarballs to CDash, which tracks content hashes to avoid duplication. Inspired-by: Bill Hoffman <bill.hoffman@kitware.com> 19 January 2015, 19:16:19 UTC
90f9c42 cmake: Teach "-E tar" to report file name on failure to read from disk The libarchive-provided error message does not always include the file name, so add it to the message ourselves to ensure users know which file fails. 19 January 2015, 19:15:58 UTC
3c0996c WCDH: Test that no C compiler features are defined for CXX compiler. This amends commit 54156d72 (WCDH: Generate per-language files in multi-file mode., 2015-01-17). 19 January 2015, 19:03:23 UTC
8dc0c97 WCDH: Fix the C_STANDARD property in the tests. The CXX_STANDARD property validates the values allowed for it, and '90' is not a valid value for it. However, the validation is only done for languages enabled for the target, and as C_undefined has no CXX files, that language is not enabled for it. This amends commit v3.1.0-rc3~23^2 (WCDH: Make the header -Wundef safe for the C language., 2014-11-24). 19 January 2015, 18:57:54 UTC
5806f6c Merge branch 'xcode-target-sort' into release 19 January 2015, 18:57:29 UTC
55e78db Merge branch 'emacs-mode-fix-word-at-point' into release 19 January 2015, 18:57:25 UTC
813ace9 Merge topic 'GNU-4.4-compile-features' 004e1540 Features: Record for GNU 4.4. 2a5ca650 Features: Wrap failure-test in UNIX condition. 1ae2c6b2 Features: Blacklist cxx_constexpr test for GNU 4.5. c66e3317 Features: Use a more-common feature in cycle-test. c43a6dc5 Features: Update comment in test to match the code. 78259135 Features: Test presence of cxx_auto_type with genex. 7b9fc88b Features: Remove outdated comment. 19 January 2015, 18:55:31 UTC
137a15b Merge topic 'SolarisStudio-compile-features' 00194ea7 Help: Add notes for topic 'SolarisStudio-compile-features' bcb04783 Features: Record for SolarisStudio 12.4. 536c535c Features: Adjust cxx_variadic_templates unit test for SolarisStudio. 5d57970d Features: Use variable in cxx_inheriting_constructors test. 69182ce4 Features: Ensure that the cxx_auto_type test is correct. 19 January 2015, 18:55:29 UTC
0898de9 Merge topic 'WriteCompilerDetectionHeader-multi-file-lang' 59e6e15c Help: Add notes for topic 'WriteCompilerDetectionHeader-multi-file-lang' 54156d72 WCDH: Generate per-language files in multi-file mode. d84d6ed4 WCDH: Allow compilers to specify features for one language but not the other. 7dcdfec9 WCDH: Find a language-specific DetermineCompiler.cmake if present. 19 January 2015, 18:55:27 UTC
3a147e1 cmake-mode.el: Re-add explicit call to require thingatpt Usually it is not needed to call '(require 'thingatpt')' explicitly because the function 'symbol-at-point' is in autoloaded but to be sure to have the function loaded in every case, require thingatpt. 19 January 2015, 18:53:38 UTC
00194ea Help: Add notes for topic 'SolarisStudio-compile-features' 19 January 2015, 18:51:38 UTC
4898495 CMakeFindPackageMode: Fix Debian multiarch default guess (#15250) In commit v2.8.6~102^2~18 (Better support for lib64 and Debian multiarch, 2011-07-14) variable names "..._LANGUAGE_ARCHITECTURE" were set instead of the correct "..._LIBRARY_ARCHITECTURE". Fix this typo and also set the language-independent variable CMAKE_LIBRARY_ARCHITECTURE. 19 January 2015, 15:45:32 UTC
2e71d92 Merge topic 'test-ctest_submit-fail-with-RunCMake' 352de1d7 Tests: Add RunCMake.CTestSubmit cases covering ctest_submit failures 19 January 2015, 15:03:12 UTC
fc9204e Merge branch 'release' 19 January 2015, 15:01:08 UTC
bc9cd21 Merge branch 'emacs-mode-fix-word-at-point' into release 19 January 2015, 14:59:14 UTC
76f7eb2 Tests: Extend RunCMake.CTestSubmit test to cover 'drop' failures Replace the TODO comment with calls to run_ctest_submit_FailDrop. For now leave curl errors out of expected stderr. They can be ported over from CTestTestFailedSubmit-* tests later. 19 January 2015, 14:56:38 UTC
352de1d Tests: Add RunCMake.CTestSubmit cases covering ctest_submit failures Cover command invocation argument errors. Prepare infrastructure to cover failed 'drop' cases, but do not cover them yet because we need to collect error messages from each platform. 19 January 2015, 14:53:57 UTC
9de2ab7 Merge topic 'consistent-empty-method' 5f69314e Replace foo.length() pattern with !foo.empty(). fd0c036c Replace 'foo.length() >= 1' pattern with !foo.empty() f09fde2d Replace 'foo.length() > 0' pattern with !foo.empty(). 86b5bdfa Replace 'foo.length() == 0' pattern with foo.empty(). fd7b3712 Replace foo.size() pattern with !foo.empty(). aa773035 Replace !foo.size() pattern with foo.empty(). 64592633 cmListCommand: Use empty() and expand whitespace. 607e1938 Replace 'foo.size() != 0' pattern with !foo.empty(). 930bd478 Replace 'foo.size() == 0' pattern with foo.empty(). d92887ef Replace 'foo.size() > 0' pattern with !foo.empty(). 19 January 2015, 14:43:28 UTC
a6bbbd0 Merge topic 'use-member-insert' fa889c4d cmakemain: Initialize vector content with iterators directly. 8211010c cmakemain: Use member insert in command line handling code. b5422573 cmListCommand: Replace loop with member algorithm. 92a37f92 Convert raw loops to set member insert. aac44e71 Convert raw loops to vector member insert. 19 January 2015, 14:43:27 UTC
95d4284 Merge topic 'delete-algorithm' 681d965d Use the cmDeleteAll algorithm for types derived from std::map. 4dc0c488 cmDeleteAll: Generalize deletion specialization for map types. 19 January 2015, 14:43:25 UTC
a1fea84 Merge topic 'remove-AppleClang-51-release-notes' e11f8d64 Remove AppleClang-5.1-features.rst release notes. 19 January 2015, 14:43:22 UTC
a5be8e3 Merge topic 'FindQt-fixes' b937f753 FindQt: explicitely mention that it cannot Qt5 or later 6af8cbf2 FindQt: fix variable name in error message 49d05a47 FindQt: fix setting DESIRED_QT_VERSION if "find_package(Qt VVV)" was called 19 January 2015, 14:43:20 UTC
953272b Merge topic 'fix-cmake-org-links' 91fbcda2 Help: Update cmake.org links to avoid redirects 19 January 2015, 14:43:18 UTC
back to top