https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
84df4a4 Merge branch 'FeatureSummary-doc-cleanup' into release 06 February 2017, 19:37:07 UTC
6cffc98 FeatureSummary: Fix documentation 06 February 2017, 19:35:30 UTC
566d207 CMake 3.8.0-rc1 version update 06 February 2017, 16:27:03 UTC
1d25e8a Help: Drop development topic notes to prepare release Release versions do not have the development topic section of the CMake Release Notes index page. 06 February 2017, 16:25:30 UTC
92be2fb Merge topic 'doc-3.8-relnotes' c2f7ef63 Help: Organize and revise 3.8 release notes 3f5e4f19 Help: Consolidate 3.8 release notes 06 February 2017, 16:16:06 UTC
c2f7ef6 Help: Organize and revise 3.8 release notes Add section headers similar to the 3.7 release notes and move each individual bullet into an appropriate section. Revise a few bullets. 06 February 2017, 15:35:28 UTC
3f5e4f1 Help: Consolidate 3.8 release notes Move all development release notes into a new version-specific document: tail -q -n +3 Help/release/dev/* > Help/release/3.8.rst git rm -- Help/release/dev/* except the sample topic: git checkout HEAD -- Help/release/dev/0-sample-topic.rst Reference the new document from the release notes index document. Add a title and intro sentence to the new document by hand. 06 February 2017, 15:34:12 UTC
811c854 Merge topic 'vs-quote-rerun-paths' f8f3cb8d VS: Fix quoting of special characters in cmake re-run check commands 06 February 2017, 15:29:46 UTC
cf1bc84 Merge topic 'productbuild_signing' 48aad9cd CPackProductBuild: Add options to sign packages 06 February 2017, 15:29:44 UTC
a4c8ad5 Merge topic 'androidtestutilities_cleanup' 8a5cb84b AndroidTestUtilities: do not require ExternalData unconditionally 9d34e51c AndroidTestUtilities: ignore exit status of ls 06 February 2017, 15:29:40 UTC
59c50a1 Merge topic 'FindHDF5-fix-HDF5_ROOT' cf0d8f1f FindHDF5: Restore HDF5_INCLUDE_DIR in all code paths 5564c017 FindHDF5: Restore fallback to static libraries 4908969f FindHDF5: Fix search with HDF5_ROOT 77f6d22a FindHDF5: Use keywords in find_library calls 3d5ad723 FindHDF5: Initialize/finalize internal search options variable ae89967f FindHDF5: Fix command-line parsing argument extraction order 06 February 2017, 15:29:38 UTC
8e8eeb7 Merge topic 'findmpi-flags-fix' a2a73935 FindMPI: Remove leading spaces from flags 93f29be2 FindMPI: Reset MPI_INCLUDE_PATH_WORK before use 06 February 2017, 15:29:35 UTC
f8f3cb8 VS: Fix quoting of special characters in cmake re-run check commands Fix our calls to `AddCustomCommandToOutput` for adding cmake re-run check commands to disable old-style quoting in favor of the full quoting logic. This is necessary when paths contain special characters like `&` that old-style quoting logic does not handle. This also requires us to expand the `$(SolutionPath)` placeholder explicitly because otherwise its expanded value will no longer be quoted correctly. As a side effect, this fixes the value in VS 10 and above where the placeholder may be undefined when driving the build through MSBuild without the `.sln` file. Reported-by: Steven Cook <sc@harshbutfair.org> Fixes: #16585 06 February 2017, 14:53:15 UTC
a00cca9 CMake Nightly Date Stamp 06 February 2017, 05:01:04 UTC
c054221 CMake Nightly Date Stamp 05 February 2017, 05:01:05 UTC
8a5cb84 AndroidTestUtilities: do not require ExternalData unconditionally Attempting to use AndroidTestUtilities to simply install some local files on device can result in the following error: Neither ExternalData_URL_TEMPLATES nor ExternalData_OBJECT_STORES is set We no longer require these ExternalData-specific variables to be set if no such remote data files are requested. Fixes: #16529 04 February 2017, 13:16:24 UTC
48aad9c CPackProductBuild: Add options to sign packages 04 February 2017, 13:07:48 UTC
d5f0c69 CMake Nightly Date Stamp 04 February 2017, 05:01:05 UTC
9d34e51 AndroidTestUtilities: ignore exit status of ls adb used to suffer from a bug where `adb shell` would return 0 irrespective the exit status of the underlying process that it executed. This is now fixed for newer versions of Android (N+). As a result, attempting to `adb shell ls` a nonexistent file can now result in a non-zero exit status. Updating check_device_file_exists to ignore the exit status of `adb shell` fixes this bug for newer Android devices. 03 February 2017, 18:22:36 UTC
cf0d8f1 FindHDF5: Restore HDF5_INCLUDE_DIR in all code paths This compatibility variable should be set no matter which method was used to find HDF5. Even if `HDF5_INCLUDE_DIRS` was set by copying the `HDF5_INCLUDE_DIR` value from `hdf5-config.cmake` it will not hurt to copy the same value back. Issue: #16566 03 February 2017, 15:57:10 UTC
fb26fcb Merge topic 'gcc-features' 37ed860a GNU C++: record that -fvisibility-inlines-hidden is available since 4.0 94a8ee6f GNU C: record that C99 is available since at least 3.4 940bf6a4 Tests/Module/WCDH: only use -Werror=undef compiler flag if actually supported f26ca5a1 Tests/Module/WCDH: write multi_file_compiler_detection.h before using it 03 February 2017, 14:32:45 UTC
5564c01 FindHDF5: Restore fallback to static libraries Since commit v3.6.1~6^2~2 (FindHDF5: Fix h5cc arg parsing to work with homebrew on Mac, 2016-07-11) we treated `HDF5_USE_STATIC_LIBRARIES` OFF as a requirement for shared libraries. It is just supposed to be a preference. Even if `HDF5_USE_STATIC_LIBRARIES` is not set we should still fall back to finding static libraries if shared libraries are not available. Issue: #16566 03 February 2017, 14:12:06 UTC
4908969 FindHDF5: Fix search with HDF5_ROOT Refactoring in commit v3.6.0-rc1~72^2 (HDF5: Rework component searching to correctly find HL for all bindings, 2016-05-12) turned off a large amount of its logic when HDF5_ROOT is set. This caused use of the hdf5 compiler wrapper to extract all needed libraries (e.g. z, dl as dependencies of hdf5 static libraries) to be skipped when using HDF5_ROOT. Fix the search logic to honor HDF5_ROOT in all code paths. Restrict the search for hdf5-specific components to this root, but allow external libraries to be found anywhere. Fixes: #16566 03 February 2017, 14:12:05 UTC
77f6d22 FindHDF5: Use keywords in find_library calls Clarify the purpose of each argument. 03 February 2017, 14:12:05 UTC
3d5ad72 FindHDF5: Initialize/finalize internal search options variable While at it, use a more private name. 03 February 2017, 14:12:05 UTC
ae89967 FindHDF5: Fix command-line parsing argument extraction order Re-implement our internal `_HDF5_parse_compile_line` helper to process command line arguments all at once and in order. Otherwise the libraries named by absolute path and those named by `-l` arguments are not kept in order. The new implementation will not handle separate arguments like `-I /path/to/include/dir` but I have not seen the HDF5 compiler wrappers produce this form. If necessary the parsing loop can be extended with a state variable to keep track of such pairs. 03 February 2017, 14:12:04 UTC
6286d26 CMake Nightly Date Stamp 03 February 2017, 05:01:05 UTC
37ed860 GNU C++: record that -fvisibility-inlines-hidden is available since 4.0 See https://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/Option-Summary.html 02 February 2017, 17:28:56 UTC
94a8ee6 GNU C: record that C99 is available since at least 3.4 02 February 2017, 17:28:56 UTC
940bf6a Tests/Module/WCDH: only use -Werror=undef compiler flag if actually supported 02 February 2017, 17:28:56 UTC
f26ca5a Tests/Module/WCDH: write multi_file_compiler_detection.h before using it This was broken in commit 98e6d1e5e426c491e04faa746c11746002e6a69d (Tests/Module/WCDH: make it work with only C features defined) when all C tests were made accessible even if no C++ features are available, but the header was only created if C++ features are available. Fix it by creating the header unconditionally before any checks on the available features. 02 February 2017, 17:25:28 UTC
2b0256c Merge topic 'find_cuda_fix_typo' 645dd3ca FindCUDA: Fix typo in CUDA_DETECT_INSTALLED_GPUS doc string 02 February 2017, 13:55:31 UTC
645dd3c FindCUDA: Fix typo in CUDA_DETECT_INSTALLED_GPUS doc string 02 February 2017, 13:52:11 UTC
3e34049 Merge topic 'doc-compile-features-fixup' be3727bf Help: Fix language standard link text in cmake-compile-features(7) 02 February 2017, 13:46:33 UTC
be3727b Help: Fix language standard link text in cmake-compile-features(7) Include each language name in the text of the link to its standards property. 02 February 2017, 13:43:58 UTC
aba66d2 Merge topic 'FindGSL-regex-fixup' 88c4576b FindGSL: Fix gl_version.h extraction regex 02 February 2017, 13:39:32 UTC
a2a7393 FindMPI: Remove leading spaces from flags 02 February 2017, 10:31:22 UTC
134ffe9 CMake Nightly Date Stamp 02 February 2017, 05:01:05 UTC
88c4576 FindGSL: Fix gl_version.h extraction regex Fix the regex to match versions with only two digits, such as `2.3`. 01 February 2017, 18:47:37 UTC
2d357ea Merge branch 'release-3.7' 01 February 2017, 18:35:29 UTC
8cdf96d Merge branch 'release-3.7' 01 February 2017, 18:34:57 UTC
93f29be FindMPI: Reset MPI_INCLUDE_PATH_WORK before use 01 February 2017, 17:45:13 UTC
6f2e2c7 Merge topic 'WCDH_allow_unsupported' 1679fecb CompileFeatures Test: make sure the target "CompileFeatures" is always defined 98e6d1e5 Tests/Module/WCDH: make it work with only C features defined c8703e9d WCDH: optionally omit error code for unknown compilers or compiler versions 0de9c398 WCDH: add macro to write simple replacement defines 01 February 2017, 14:21:44 UTC
e8f55c1 Merge topic 'FortranCInterface-vs-intel-workaround' c9ee05d8 FortranCInterface: Fix support for VS with Intel toolset 01 February 2017, 14:16:25 UTC
2dfe480 Merge topic 'intel-c11-windows' 5d70894d Features: Update version of Intel Compiler on Windows supporting C 11 01 February 2017, 14:16:22 UTC
d88ab13 Merge topic 'doc-cmake-packages-typo' f3619bbc Help: Fix typo in <pkg>_NOT_FOUND_MESSAGE example in cmake-packages(7) 01 February 2017, 14:16:20 UTC
048ecde Merge topic 'doc-cmake-developer-purpose' 9f3e812f Help: Extend documented purpose of cmake-developer(7) manual 01 February 2017, 14:16:17 UTC
d6113e9 Merge topic 'developer-setup' 3288ab0c Convert local hook configuration to a Git config file format 773df0e2 Add pre-commit hook to check whether SetupForDevelopment must re-run 01 February 2017, 14:16:14 UTC
9f3e812 Help: Extend documented purpose of cmake-developer(7) manual Issue: #16616 01 February 2017, 14:09:51 UTC
5d70894 Features: Update version of Intel Compiler on Windows supporting C 11 The Intel Compiler 15.0.0 on Windows does not support `-Qstd=c11`. Bump our version requirement to 16 to use that flag. 01 February 2017, 13:55:50 UTC
c9ee05d FortranCInterface: Fix support for VS with Intel toolset When using a Visual Studio generator with an Intel toolset, such as -T "Intel C++ Compiler XE 14.0" the generated FortranCInterface mangling detection project may fail to build due to `devenv` not working with the `/project ALL_BUILD` option. This seems to be a bug in `devenv` or the Intel VS integration. Work around the problem by building with `/project FortranCInterface` instead. We only need to build this executable and its dependencies within the detection test project anyway. Fixes: #16519 01 February 2017, 13:47:42 UTC
f3619bb Help: Fix typo in <pkg>_NOT_FOUND_MESSAGE example in cmake-packages(7) Fixes: #16616 01 February 2017, 13:40:59 UTC
1f8da86 CMake Nightly Date Stamp 01 February 2017, 05:01:07 UTC
3288ab0 Convert local hook configuration to a Git config file format The `git config` format is cleaner than a bash script and is also supported by our `hooks` branch to specify CMake-specific hooks. 31 January 2017, 16:16:10 UTC
773df0e Add pre-commit hook to check whether SetupForDevelopment must re-run Add a version number to the `SetupForDevelopment.sh` script and use a pre-commit hook to check when it changes. 31 January 2017, 16:16:10 UTC
5efb8b9 Merge topic 'CSharpVS2017' 435cebaa VS: Fix CSharp compiler identification for VS 2017 31 January 2017, 14:04:26 UTC
2e2c92e Merge topic 'FindBoost-cache-unset-on-change' 97d61562 FindBoost: unset cache variables if the lib dir changes 31 January 2017, 14:04:23 UTC
6ec0c09 Merge topic 'topic-reproducible-build' 5181f1f8 Tests: make tests pass with SOURCE_DATE_EPOCH set 31 January 2017, 14:04:21 UTC
5accbac Merge topic 'vs-export-external-objects' 4dde0bc8 VS: Fix WINDOWS_EXPORT_ALL_SYMBOLS for external objects 31 January 2017, 14:04:19 UTC
f012a95 Merge topic '16432-static-frameworks' 071f8e78 Apple: Add support for static frameworks d525754e Xcode: Refactor RunCMake.Framework test to prepare for static frameworks 45405f00 Xcode: Ignore Xcode project warning until issue is fixed 50e1c105 Makefile: For static libraries remove only the "real" lib before creating 8643ca75 Makefile: Re-order list of files to clean 31 January 2017, 14:04:16 UTC
8a76536 Merge topic 'developer-setup' 050bb41c Tell Git not to export the GitSetup directory d6108c87 GitSetup: Tell Git not to export .gitattributes 3642d657 Merge branch 'upstream-GitSetup' into developer-setup 7e5ef9ca GitSetup 2016-12-13 (cd5ada6d) a6fda7bf Merge branch 'upstream-GitSetup' into developer-setup a2d393d6 Add script to update GitSetup from upstream c7b846ed GitSetup 2012-04-26 (b7daff9b) 31 January 2017, 14:04:13 UTC
435ceba VS: Fix CSharp compiler identification for VS 2017 The CSharp compiler for VS 2017 has moved from `MSBuildTools` to `RoslynTargets`. Account for both locations giving priority to the `MSBuildTools` location. 31 January 2017, 14:00:20 UTC
071f8e7 Apple: Add support for static frameworks Closes: #16432 31 January 2017, 13:59:15 UTC
07d3695 CMake Nightly Date Stamp 31 January 2017, 05:01:05 UTC
050bb41 Tell Git not to export the GitSetup directory The `Utilities/GitSetup` directory is useful only in Git work trees and so does not need to be distributed with source tarballs. 30 January 2017, 21:56:31 UTC
d6108c8 GitSetup: Tell Git not to export .gitattributes GitSetup upstream added an attribute to export `.gitattributes` so that importing snapshots into the sources of other projects would bring along the attributes. However, we don't want to export them from CMake. Drop `.gitattributes` entries not relevant to CMake. 30 January 2017, 21:53:14 UTC
3642d65 Merge branch 'upstream-GitSetup' into developer-setup * upstream-GitSetup: GitSetup 2016-12-13 (cd5ada6d) 30 January 2017, 21:45:48 UTC
7e5ef9c GitSetup 2016-12-13 (cd5ada6d) Code extracted from: https://gitlab.kitware.com/utils/gitsetup.git at commit cd5ada6d5626da409d3ff108c341b9afd615803f (setup). 30 January 2017, 21:45:47 UTC
a6fda7b Merge branch 'upstream-GitSetup' into developer-setup 30 January 2017, 21:45:07 UTC
a2d393d Add script to update GitSetup from upstream 30 January 2017, 21:40:21 UTC
c7b846e GitSetup 2012-04-26 (b7daff9b) Code extracted from: https://gitlab.kitware.com/utils/gitsetup.git at commit b7daff9b8b776eeed34385d8ae2019dc9e113c52 (setup). 30 January 2017, 21:39:16 UTC
1679fec CompileFeatures Test: make sure the target "CompileFeatures" is always defined Everything in there guards against unsupported compilers already, so no need to skip the whole file if no features are defined. This in turn allows to have a simpler fallback in case there is no C++ auto_type feature available. 30 January 2017, 18:19:44 UTC
98e6d1e Tests/Module/WCDH: make it work with only C features defined 30 January 2017, 18:19:44 UTC
c8703e9 WCDH: optionally omit error code for unknown compilers or compiler versions This allows one to generate a header that will basically always work. In case an unknown compiler or compiler version is encountered it simply falls back to the unsupported case. 30 January 2017, 18:19:44 UTC
0de9c39 WCDH: add macro to write simple replacement defines 30 January 2017, 18:19:43 UTC
97d6156 FindBoost: unset cache variables if the lib dir changes This fixes a regression introduced by commit v3.3.0-rc1~5^2~2 (FindBoost: Search for debug and release libraries separately, 2015-01-26). The `_Boost_CHANGE_LIBDIR` variable was split into `_Boost_CHANGE_LIBDIR_{DEBUG,RELEASE}` but one usage site was not updated. 30 January 2017, 14:29:28 UTC
5181f1f Tests: make tests pass with SOURCE_DATE_EPOCH set Fix tests to account for commit 243aed52 (cmTimestamp: Support SOURCE_DATE_EPOCH to override current time, 2017-01-25). In openSUSE we are running the test-suite as part of the build and that failed in these two places when building everything with `SOURCE_DATE_EPOCH` set. 30 January 2017, 14:25:44 UTC
4dde0bc VS: Fix WINDOWS_EXPORT_ALL_SYMBOLS for external objects Teach Visual Studio generators to include external object files in the list of objects whose symbols are to be exported. The Makefile and Ninja generators already did this. 30 January 2017, 13:54:49 UTC
8df12fc Merge topic 'FeatureSummary_enhancement' 560574b0 FeatureSummary: Update release notes 3cfde818 FeatureSummary: Refactor to use global properties for package types f0165eb6 FeatureSummary: Allow lists of dependencies in ADD_FEATURE_INFO 9da7bf08 FeatureSummary: Add QUIET_ON_EMPTY option to feature_summary 4cf4aceb FeatureSummary: Add unit tests 614a97a5 FeatureSummary: Do not force OPTIONAL type in SET_PACKAGE_PROPERTIES 65a0bfd8 FeatureSummary: Add deprecation warnings to deprecated commands 4da3cae9 FeatureSummary: Clean printed output 30 January 2017, 13:43:23 UTC
5c6c766 Merge topic 'timestamp-percent' 6c54f7b3 string: Teach TIMESTAMP to treat %% as % 30 January 2017, 13:43:21 UTC
e6659f6 Merge topic 'test-preprocess-configs' f01045ea Tests: Make Preprocess test work in RelWithDebInfo and MinSizeRel 30 January 2017, 13:43:17 UTC
cbabde8 CMake Nightly Date Stamp 30 January 2017, 05:01:08 UTC
84963f4 CMake Nightly Date Stamp 29 January 2017, 05:01:03 UTC
b30ac98 CMake Nightly Date Stamp 28 January 2017, 05:01:05 UTC
6c54f7b string: Teach TIMESTAMP to treat %% as % This encoding is documented by `strptime`. 27 January 2017, 14:25:37 UTC
f01045e Tests: Make Preprocess test work in RelWithDebInfo and MinSizeRel 27 January 2017, 14:09:15 UTC
325c615 Merge topic 'genex-if' 895f7f16 Genex: Add `IF` generator expression 27 January 2017, 14:04:58 UTC
0ea578b Merge topic 'GNUG_define' 24d73fa0 GNUC: also check __GNUG__ define when checking for g++ 27 January 2017, 14:04:56 UTC
86ec0ac Merge topic 'topic-reproducible-build' 243aed52 cmTimestamp: Support SOURCE_DATE_EPOCH to override current time 27 January 2017, 14:04:53 UTC
fa9c129 Merge topic 'test-GeneratorExpression-update' c3a22518 Tests: Extend GeneratorExpression to work with more configurations d4911724 Tests: Teach GeneratorExpression to cover spaces in include dirs 1a2a9b0d Tests: Simplify GeneratorExpression imported include directory check 27 January 2017, 14:04:49 UTC
560574b FeatureSummary: Update release notes 27 January 2017, 08:24:28 UTC
83596d4 CMake Nightly Date Stamp 27 January 2017, 05:01:05 UTC
d525754 Xcode: Refactor RunCMake.Framework test to prepare for static frameworks 26 January 2017, 18:34:58 UTC
45405f0 Xcode: Ignore Xcode project warning until issue is fixed Issue: #15272 26 January 2017, 18:34:40 UTC
50e1c10 Makefile: For static libraries remove only the "real" lib before creating When creating a static library with the archive tool, only the `.a` needs to be removed to start a fresh archive. Any other files (e.g. symbolic links we may later add) are not managed by the archive tool and therefore do not need to be cleaned. 26 January 2017, 18:30:37 UTC
8643ca7 Makefile: Re-order list of files to clean Revise construction of the list of files to be cleaned for the target to list the "real" file first. 26 January 2017, 18:28:38 UTC
895f7f1 Genex: Add `IF` generator expression This allows a single condition to be used to choose between two alternatives. Without this the condition must be duplicated with one surrounded by `NOT`. Closes: #15585 26 January 2017, 16:18:50 UTC
b8db2ed Merge topic 'tests_auto_type' ef47272b Tests: use cxx_auto_type only if actually available 26 January 2017, 15:40:47 UTC
90ee3bd Merge topic 'FindCUDA-select-flags-auto-msvc' c1f3086d FindCUDA: Enable CUDA_SELECT_NVCC_ARCH_FLAGS Auto for MSVC 26 January 2017, 15:40:44 UTC
4ab35eb Merge topic 'pkg-config-recheck' 796dea67 FindPkgConfig: Recheck pkg-config on parameter change. 26 January 2017, 15:40:42 UTC
back to top