https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
97619b3 Added docs and corrected directory globbing. 20 February 2014, 15:46:51 UTC
100489b Finding recent dot now works on Windows. 19 February 2014, 16:48:50 UTC
28dcccf Begin post-3.0 development 19 February 2014, 14:30:37 UTC
38082de Merge branch 'release' 19 February 2014, 14:30:28 UTC
7cbab17 Change version scheme to use only two components for feature levels Historically CMake used three version components for the feature level. We released new features while incrementing only the third version component. Since commit v2.8.2~105^2~4 (New version scheme to support branchy workflow, 2010-04-23) we used the fourth version component for bug-fix releases and the development date: <major>.<minor>.<patch>[.<tweak>][-rc<n>] = Release <major>.<minor>.<patch>.<date>[-<id>] = Development This solidified use of three components for the feature level, and was necessary to continue releasing 2.x versions because: * Some existing projects performed floating-point comparisons of ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} to 2.x numbers so ``x`` could never be higher than 9. * Version 2.9.<date> was used briefly in post-2.8.0 development in CVS prior to the transition to Git, so using it in releases may have caused confusion. Now that we are moving to 3.x versions, these two restrictions go away. Therefore we now change to use only two components for the feature level and use the scheme: <major>.<minor>.<patch>[-rc<n>] = Release <major>.<minor>.<date>[-<id>] = Development 19 February 2014, 14:30:13 UTC
4bb8039 CMake 3.0.0-rc1 version update 19 February 2014, 14:30:12 UTC
f8ccb6d Help: Drop development topic notes to prepare release Release versions do not have the development topic section of the CMake Release Notes index page. 19 February 2014, 14:30:12 UTC
db68dd2 Help: Rename 3.0 release notes to 3.0.0 Bug-fix releases 3.0.x may have their own notes so this will look more consistent. 19 February 2014, 14:30:00 UTC
d30e4fa Help: Consolidate remaining 3.0 release notes 19 February 2014, 13:39:44 UTC
a7c956b Merge topic 'doc-usage-requirements' 0c54b775 Help: Document the purpose of usage requirements clearly. 19 February 2014, 13:34:29 UTC
6a1a644 Merge topic 'FindOpenSSL-prefer-root' e346c47a FindOpenSSL: Prefer OPENSSL_ROOT_DIR first (#14764) 19 February 2014, 13:34:27 UTC
59df48a Merge topic 'FindJNI-ppc64le' ac2527e1 FindJNI: Add ppc64le architecture 19 February 2014, 13:34:26 UTC
9304d09 Merge topic 'FindBoost-namespace' 17485e37 FindBoost: Add suport for custom namespaces 19 February 2014, 13:34:24 UTC
5a607c4 Merge topic 'doc-package-registry' bf012e0c Help: Format find_package() command documentation bd6887e4 Help: Document the package registry in cmake-packages.7 19 February 2014, 13:34:22 UTC
e7d3287 Merge topic 'minor-cleanups' f6cae4ea Tests: Remove some trailing black lines. c0ea4c5c Makefile: Fix comment indentation. 5e0c73c7 cmGlobalGenerator: Remove unused variable. 907c09cd include_directory: Add missing include. a74d125a Help: Fix typo 317d8498 Small typo fix 19 February 2014, 13:34:20 UTC
0b3a792 CMake Nightly Date Stamp 19 February 2014, 05:01:07 UTC
e346c47 FindOpenSSL: Prefer OPENSSL_ROOT_DIR first (#14764) Use hints computed from this explicit variable before those computed by PkgConfig. They are more specific. 18 February 2014, 20:05:32 UTC
0c54b77 Help: Document the purpose of usage requirements clearly. People will be tempted to put things there for convenience, thereby causing conflicts similar to http://thread.gmane.org/gmane.comp.compilers.clang.devel/35162/focus=35169 where it is conceivable that the LLVM developers could put a flag on a target for convenience, which would cause conflicts for some downstreams. 18 February 2014, 15:08:44 UTC
ac2527e FindJNI: Add ppc64le architecture Signed-off-by: Dinar Valeev <dvaleev@suse.com> 18 February 2014, 13:30:51 UTC
586d2ce CMake Nightly Date Stamp 18 February 2014, 05:01:06 UTC
17485e3 FindBoost: Add suport for custom namespaces When building boost with an alternate namespace the libraries generated will have a different naming convention. This is often done to ensure no symbol conflicts with external libraries built against a different version of boost. If the namespace used is "myprivateboost::" instead of "boost::" then the libraries built will be named myprivateboost_foo instead of boost_foo. Add an option to specify a custom namespace used to alter the library names that get searched for. 17 February 2014, 21:05:48 UTC
bf012e0 Help: Format find_package() command documentation Add inline markup and explicit markup block syntax as needed. Add cross-references to other documentation as appropriate. 17 February 2014, 20:37:04 UTC
bd6887e Help: Document the package registry in cmake-packages.7 Port documentation from the CMake Wiki page at: http://www.cmake.org/Wiki/CMake/Tutorials/Package_Registry as of 2014-02-17 into our main documentation. 17 February 2014, 20:34:48 UTC
f6cae4e Tests: Remove some trailing black lines. 17 February 2014, 17:54:53 UTC
b486c6d Merge topic 'windows-filesystem-retry-config' 7b1f966a Windows: Make file delete/rename retry configurable 17 February 2014, 15:03:11 UTC
1062303 Merge topic 'INTERFACE-no-sources' 9db9c1fc cmTarget: Don't try to get sources of an INTERFACE_LIBRARY. 17 February 2014, 14:59:49 UTC
2bbcbb4 Merge topic 'emacs-mode-cmake-help' 9d35f7c4 cmake-mode.el: Add help for variables/properties/complete. Factorize. 7cc21e9a cmake-mode.el: Add the ability to retrieve module help. 17 February 2014, 14:59:47 UTC
65c74eb Merge topic 'KateHandleSpacesInPath' 22e5c6c2 Kate: handle spaces in build dir 17 February 2014, 14:59:45 UTC
a3bac64 Merge topic 'isystemForIcpc' cab5ebd4 Intel compiler: add -isystem flag under Linux 17 February 2014, 14:59:43 UTC
22e5c6c Kate: handle spaces in build dir They need to be escaped in the json file... I'm quite sure I tested this before, obviously I didn't test it correctly. Alex 17 February 2014, 14:54:03 UTC
c0ea4c5 Makefile: Fix comment indentation. 17 February 2014, 10:14:18 UTC
5e0c73c cmGlobalGenerator: Remove unused variable. 17 February 2014, 10:13:44 UTC
907c09c include_directory: Add missing include. The cmGeneratorExpression is used here, but the header for it is not in the include heirarchy. This would be a compile error if the file were compiled as a standalone translation unit, but it is instead used in a mini-unity-build by inclusion in cmCommands.cxx. The header for cmGeneratorExpression happens to be included first, so the compilation works fine. IDEs do not know this however, and flag the use as an error. 17 February 2014, 10:08:58 UTC
a74d125 Help: Fix typo binary_find -> binary_search. 17 February 2014, 10:07:59 UTC
317d849 Small typo fix 17 February 2014, 10:07:41 UTC
b1d3418 CMake Nightly Date Stamp 17 February 2014, 05:01:07 UTC
0c958c4 CMake Nightly Date Stamp 16 February 2014, 05:01:05 UTC
66bf178 CMake Nightly Date Stamp 15 February 2014, 05:01:11 UTC
9db9c1f cmTarget: Don't try to get sources of an INTERFACE_LIBRARY. An an assert to ensure this. 14 February 2014, 12:53:14 UTC
945a66a CMake Nightly Date Stamp 14 February 2014, 05:01:05 UTC
79bb8cf Merge topic 'dev/ninja-speedup' 26762e16 Ninja: Cache target-level flags 13 February 2014, 15:28:32 UTC
aa23381 Merge topic 'osx-sysroot-escape' 77b2e6f1 OS X: Escape path given to -isysroot flag 13 February 2014, 15:28:29 UTC
26762e1 Ninja: Cache target-level flags Instead of figuring out target flags per-source file, cache the flags that are being used. This results in a *much* faster generate time for Ninja. 13 February 2014, 15:20:56 UTC
9d35f7c cmake-mode.el: Add help for variables/properties/complete. Factorize. 13 February 2014, 14:38:13 UTC
7cc21e9 cmake-mode.el: Add the ability to retrieve module help. 13 February 2014, 14:35:30 UTC
c56854a CMake Nightly Date Stamp 13 February 2014, 05:01:07 UTC
54d9e01 Merge topic 'backward-compatibility' f2eee72f add_custom_command: Disallow use of SOURCE signatures. c248a437 Add policy CMP0049 to avoid variable expansion in source lists 12 February 2014, 16:31:30 UTC
764d467 Merge topic 'dev/fix-sublime-compile-flags' 2d9f93ab Sublime: Pass language and config properly 12 February 2014, 16:31:28 UTC
0d177cf Merge topic 'cmake-devel-version-macro' 6ca6613a Export: Use the CMAKE_DEVEL_VERSION macro for build-export files. 12 February 2014, 16:31:26 UTC
e6f0b87 Merge topic 'osx-intel-info-split' 3693c63f OS X: Split Intel compiler information files 12 February 2014, 16:31:24 UTC
9b06fa5 Merge topic 'FindBoost-MPI-hints' a22eeca3 FindBoost: Search next to MPI libraries for boost_mpi (#14739) 12 February 2014, 16:31:22 UTC
f2eee72 add_custom_command: Disallow use of SOURCE signatures. Add CMP0050 to control this behavior. 12 February 2014, 16:19:27 UTC
c248a43 Add policy CMP0049 to avoid variable expansion in source lists 12 February 2014, 16:17:38 UTC
77b2e6f OS X: Escape path given to -isysroot flag Ensure that paths containing spaces or other special characters are escaped correctly on the command line. 12 February 2014, 15:49:10 UTC
7b1f966 Windows: Make file delete/rename retry configurable Several CMake operations need to replace files in rapid succession. This commonly fails on Windows due to filesystem lock behavior so we have retry loops. No matter how many times we retry or how long we delay there will inevitably be someone with an environment that needs more. Make the retry count and delay configurable in the Windows Registry keys: {HKCU,HKLM}/Software/Kitware/CMake/Config in DWORD values FilesystemRetryCount = Number of tries FilesystemRetryDelay = Delay in milliseconds between tries Leave the feature undocumented for now to see how it goes. 12 February 2014, 14:55:41 UTC
5104f55 CMake Nightly Date Stamp 12 February 2014, 05:01:06 UTC
2d9f93a Sublime: Pass language and config properly 11 February 2014, 19:41:43 UTC
6ca6613 Export: Use the CMAKE_DEVEL_VERSION macro for build-export files. Move the macro definition to the cmExportBuildFileGenerator.h header to share it. 11 February 2014, 15:31:53 UTC
3693c63 OS X: Split Intel compiler information files Create platform information modules Platform/Darwin-Intel-(C|CXX).cmake and helper module Platform/Darwin-Intel.cmake. Teach existing module Platform/Darwin-Intel-Fortran.cmake to use the helper too. Move information from Platform/Darwin-icc.cmake into these files and drop information already in Platform/Darwin.cmake to avoid duplication. 11 February 2014, 15:04:26 UTC
418a155 Merge topic 'cmake-devel-version-macro' 9bcc1b21 Export: Fix internal CMake version test logic d2059d25 cmVersion: Fix CMake_VERSION_ENCODE for date in patch level 28805109 cmStandardIncludes: Include cmIML/INT.h for portable integer types 11 February 2014, 14:16:09 UTC
c29eb75 Merge topic 'release-notes-3.0' 10f90d64 Help: Add CMake 3.0 Release Notes 11 February 2014, 14:16:08 UTC
cef89d4 Merge topic 'backward-compatibility' 37e1894d cmTarget: Remove TODO comment. 11 February 2014, 14:16:06 UTC
e44bbec Merge topic 'eclipse-hotfix' 311c0b98 Eclipse: Skip generator expressions in COMPILE_DEFINITIONS (#14722) 11 February 2014, 14:16:04 UTC
a12dd79 Merge topic 'graphviz-one-file' 18bef4cd graphviz: allow to disable per target graphs (#14746) 11 February 2014, 14:16:02 UTC
10f90d6 Help: Add CMake 3.0 Release Notes Manually read through version control history since the 2.8.12.2 release and write release notes for important user-facing changes. Co-Author: Stephen Kelly <steveire@gmail.com> 11 February 2014, 14:07:14 UTC
37e1894 cmTarget: Remove TODO comment. The current behavior is desirable because while it is common to set a per-config suffix on libraries, it is not common for exexutables. 11 February 2014, 10:05:01 UTC
ab6231f CMake Nightly Date Stamp 11 February 2014, 05:01:05 UTC
a22eeca FindBoost: Search next to MPI libraries for boost_mpi (#14739) Some distributions place boost_mpi next to the MPI libraries against which it was built instead of next to the other Boost libraries. If find_package(MPI) has already been run prior to find_package(Boost) then MPI_CXX_LIBRARIES or MPI_C_LIBRARIES may be set to the location of the MPI libraries. Teach FindBoost.cmake to look there for boost_mpi and boost_mpi_python after looking next to the other Boost libraries but not consider the location to be Boost_LIBRARY_DIR. 10 February 2014, 21:18:47 UTC
5d05124 Merge topic 'doc-policy-version-3.0' aab11bca Help: Change version 3.0.0 -> 3.0 in policy docs 10 February 2014, 20:40:33 UTC
9bcc1b2 Export: Fix internal CMake version test logic Fix the internal DEVEL_CMAKE_VERSION macro to use CMake_VERSION_ENCODE to compare version component-wise. Otherwise an old invocation of the macro may be tricked into using the current version when the requested major version is smaller than the current version but the requested minor version is larger. It should use the requested (old) version in that case. 10 February 2014, 20:32:33 UTC
d2059d2 cmVersion: Fix CMake_VERSION_ENCODE for date in patch level Use a uint64_t to store encoded version numbers so we have plenty of bits available. Encode with room for up to 1000 minor releases between major releases and to encode dates until the year 10000 in the patch level. This is necessary because CMake development versions prior to release 2.8.0 used the date in the patch level, and this practice may be restored after the 3.0 release. 10 February 2014, 20:32:32 UTC
2880510 cmStandardIncludes: Include cmIML/INT.h for portable integer types Also teach the bootstrap script to configure the needed headers. 10 February 2014, 20:31:40 UTC
aab11bc Help: Change version 3.0.0 -> 3.0 in policy docs Starting with 3.0 we will use only two components for the feature level, and policies are only ever introduced with a bump to the feature level version. 10 February 2014, 16:40:21 UTC
89d49ec Merge topic 'extend-docs' 0b3e98d9 Help: Don't list debuggable properties in cmake-buildsystem manual. 39d08b92 Help: Add additional hyperlink targets ef17e293 Help: Document SYSTEM treatment of IMPORTED target INTERFACE_INCLUDE_DIRS 10 February 2014, 16:25:10 UTC
d7133c0 Merge topic 'cmake-devel-version-macro' eaf703f1 Export: Use a macro to ensure minimum development version requirement 10 February 2014, 16:25:08 UTC
c00d84c Merge topic 'remove-Example' 2e615d4b Remove the Example from the source. 10 February 2014, 16:25:06 UTC
7b38931 Merge topic 'generate-cmCommands-file' 23d3d38a CMakeLists: Generate the cmCommands.cxx file. 10 February 2014, 16:25:04 UTC
cdcf23b Merge topic 'fix-CMP0028-iface' b2915238 CMP0028: Trigger on libraries from INTERFACE of dependencies. 10 February 2014, 16:25:02 UTC
d51dc24 Merge topic 'Qt4-qmake-IMPORTED' 7d90d6c5 Qt4: Add IMPORTED executable for qmake. 10 February 2014, 16:25:00 UTC
f67ab2a Merge topic 'release-notes-prep' 4b7f2f52 Help: Add hyperlink targets for argument types in cmake-language(7) 113df227 Remove ChangeLog.manual 79f55909 Remove ChangeLog.txt d25dbc90 Tests/BundleTest: Drop use of ChangeLog.txt 10 February 2014, 16:24:58 UTC
27d3974 Merge topic 'wix_desktop' b78d74de CPackWiX: Add support for CPACK_CREATE_DESKTOP_LINKS 10 February 2014, 16:24:56 UTC
6e149e1 Merge topic 'interface-library-signatures' 6d85a6a6 add_library: Issue better diagnostic for INTERFACE GLOBAL signature. 770245e9 add_library: Test invalid GLOBAL INTERFACE signature. 10 February 2014, 16:24:54 UTC
e180c1d Merge topic 'doc-polcy-CMP0024-typo' f02b5fb5 Help: Fix typo. 10 February 2014, 16:24:52 UTC
c9a489a Merge topic 'intel-visibility' b7f58511 Visibility: the Intel compiler does not support -fvisibility on windows 10 February 2014, 16:24:50 UTC
3c23873 Merge topic 'test-CheckModules-speedup' 78be3247 Tests: Speed up RunCMake.CheckModules test 10 February 2014, 16:24:48 UTC
18bef4c graphviz: allow to disable per target graphs (#14746) In CMakeGraphVizOptions.cmake, allow the options GRAPHVIZ_GENERATE_PER_TARGET and GRAPHVIZ_GENERATE_DEPENDERS to enable the generation of per target graphs and subgraphs respectively. Both options are TRUE per default to maintain current behavior. 10 February 2014, 15:30:50 UTC
0b3e98d Help: Don't list debuggable properties in cmake-buildsystem manual. 10 February 2014, 08:03:53 UTC
c116639 CMake Nightly Date Stamp 10 February 2014, 05:01:06 UTC
311c0b9 Eclipse: Skip generator expressions in COMPILE_DEFINITIONS (#14722) This is a hot-fix for the bug. It seems like a good idea to generally reform the generator to care about targets instead of directories, but this patch at least makes the reported error go away. 09 February 2014, 22:44:21 UTC
eaf703f Export: Use a macro to ensure minimum development version requirement Use the version number of the specified release, or of the current development version if the release is not yet made. 09 February 2014, 21:30:30 UTC
2e615d4 Remove the Example from the source. It is not showing modern practice, and is obsolete as documentation after the rst documentation system and new content. 09 February 2014, 21:09:20 UTC
23d3d38 CMakeLists: Generate the cmCommands.cxx file. Define the list of commands in the CMakeLists.txt file. List the sources in the CMakeLib target, but mark them as HEADER_FILE_ONLY. This has the effect that IDEs will show the files, though they will not be built again. Add a cmCommandsForBootstrap.cxx file for bootstrapping purposes. Rename the cmExportLibraryDependencies file to match the common pattern. 09 February 2014, 21:02:37 UTC
b291523 CMP0028: Trigger on libraries from INTERFACE of dependencies. 09 February 2014, 14:35:28 UTC
7d90d6c Qt4: Add IMPORTED executable for qmake. 09 February 2014, 13:35:57 UTC
39d08b9 Help: Add additional hyperlink targets 09 February 2014, 11:11:09 UTC
ef17e29 Help: Document SYSTEM treatment of IMPORTED target INTERFACE_INCLUDE_DIRS Document how the behavior can be controlled. 09 February 2014, 11:11:09 UTC
1cc3e9f CMake Nightly Date Stamp 09 February 2014, 05:01:05 UTC
b78d74d CPackWiX: Add support for CPACK_CREATE_DESKTOP_LINKS 08 February 2014, 18:19:33 UTC
d582809 CMake Nightly Date Stamp 08 February 2014, 05:01:06 UTC
4b7f2f5 Help: Add hyperlink targets for argument types in cmake-language(7) Add reStructuredText hyperlink targets for the bracket, quoted, and unquoted argument sections. 07 February 2014, 18:35:50 UTC
back to top