https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
44100ad CMake 3.1.2 04 February 2015, 18:58:33 UTC
e6afd95 Merge branch 'fix-msvc-linker-flags-typo' into release-3.1 03 February 2015, 18:51:33 UTC
467f5bc MSVC: Fix initialization of RelWithDebInfo shared library link flags (#15385) Initialize CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT from the value of CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT rather than the one for the DEBUG configuration. This typo has been present since the logic was first added in commit 36db45082e (ENH: fix up several problems with new stuff, 2002-11-11). Reported-by: Gunnar Roth <gunnar.roth@gmx.de> 03 February 2015, 18:41:21 UTC
fdb0799 Merge branch 'fix-default-install-config' into release-3.1 03 February 2015, 18:23:57 UTC
dea42d9 install: Fix regression in default configuration selection The refactoring in commit v3.1.0-rc1~812^2~16 (stringapi: Pass configuration names as strings, 2014-02-09) broke the code path in cmLocalGenerator::GenerateInstallRules that intends to pick a default install configuration for multi-config generators. Fix the logic to select an empty default configuration only when using a single-config generator whose CMAKE_BUILD_TYPE is not set. Inspired-by: Roman Wüger <roman.wueger@gmx.at> Reported-by: NoRulez <norulez@me.com> 03 February 2015, 18:05:47 UTC
37662ea Merge branch 'backport-fix-cpack-symlink-create-dir' into release-3.1 30 January 2015, 15:24:21 UTC
4dc5ace CPack: Fix packaging of source tarballs with symbolic links When staging the package installation, if the first file in a directory happens to be a symbolic link, make sure we create the directory before trying to create the link. 30 January 2015, 15:08:12 UTC
048fb8e Merge branch 'ctest-update-gmake-error-match' into release 28 January 2015, 15:42:07 UTC
d52b5f8 ctest_build: Update GNU make error message matching (#15379) The "No rule to make target" error message of gmake is not correctly recognized since GNU make changed the quoting style in commit 23c2b99e9d (Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines, 2012-03-04). Fix our regex to match both old and new quoting styles. 28 January 2015, 15:32:06 UTC
e6214b9 Merge branch 'fix-OBJECT_DEPENDS-after-path-normalization' into release 28 January 2015, 14:07:44 UTC
9259d77 Normalize OBJECT_DEPENDS paths to match custom commands (#15366) Custom command path normalization added in commit v3.1.0-rc1~471^2 (add_custom_command: Normalize OUTPUT and DEPENDS paths, 2014-05-28) broke use of OBJECT_DEPENDS to bring in custom commands because the latter paths were not normalized too. Normalize them and add a test case. Reported-by: Daniel v. Gerpen 28 January 2015, 14:06:21 UTC
5d96094 Merge branch 'OpenSSL_102' into release 28 January 2015, 13:52:51 UTC
c5d9a82 FindOpenSSL: fix detection of OpenSSL 1.0.2 27 January 2015, 21:53:54 UTC
163bbff Merge branch 'doc-link_libraries-note' into release 26 January 2015, 14:17:35 UTC
c731091 Help: Clarify status of link_libraries command The command has been documented as 'deprecated', but it is not really slated for removal and can still be used. Clarify this in the documentation. While at it, revise the documentation to use wording more consistent with that now in target_link_libraries. Suggested-by: Christoph Grüninger <foss@grueninger.de> 26 January 2015, 14:15:00 UTC
f6308b0 Merge branch 'backport-kwsys-directory-check-opendir' into release 23 January 2015, 18:19:33 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
7ab7aa6 Merge branch 'FeatureSummary-fix-doc-typo' into release 23 January 2015, 14:03:26 UTC
b79d8f2 FeatureSummary: Fix bracket in documentation. 23 January 2015, 14:02:48 UTC
57622bd CMake 3.1.1 20 January 2015, 16:04:44 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
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
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
bc9cd21 Merge branch 'emacs-mode-fix-word-at-point' into release 19 January 2015, 14:59:14 UTC
ca80598 cmake-mode.el: Fix extracting keyword at point in cmake-help Since commit v3.1.0-rc2~1^2~1 (cmake-mode.el: syntax of '_' should be treated as symbol, 2014-11-12) the 'word-at-point' function does not extract the whole keyword anymore if it contains an '_', because 'forward-word' stops at '_'. Use 'symbol-at-point' to extract a whole keyword even if there is an '_'. 19 January 2015, 14:14:10 UTC
9e0176e Xcode: Sort targets deterministically and with ALL_BUILD first (#15346) The default target in XCode is the first one in the file. In commit v3.1.0-rc1~286^2 (cmTarget: use a hash_map for cmTargets typedef, 2014-06-10) the order of the targets stored in cmMakefile was made non-deterministic instead of lexicographic. Teach the Xcode generator to do its own sorting to restore a predictable order. While at it, place ALL_BUILD first (as is done in VS IDE generators) explicitly in the comparison function so that it is the default target even if other targets sort earlier lexicographically (e.g. "AAA"). 19 January 2015, 13:36:45 UTC
c0ff542 Xcode: Fix early termination on per-config source file error In commit v3.1.0-rc1~687^2~4 (cmTarget: Make the source files depend on the config, 2014-02-13) an early termination case was added to the Xcode generator. Fix handling of this case to actually abort all the generation steps. Otherwise some of the later steps are attempted without the preconditions normally established by earlier steps, possibly leading to a crash. 19 January 2015, 13:34:32 UTC
a2dc7f8 Merge branch 'FindQt-fixes' into release 16 January 2015, 21:07:15 UTC
b937f75 FindQt: explicitely mention that it cannot Qt5 or later 16 January 2015, 21:06:22 UTC
6af8cbf FindQt: fix variable name in error message 16 January 2015, 21:06:21 UTC
49d05a4 FindQt: fix setting DESIRED_QT_VERSION if "find_package(Qt VVV)" was called In case the given version was not only "3" or "4", but something like "4.8" DESIRED_QT_VERSION was set to an unsupported value. While at it also check that the version passed in is really in the range of 3.x and 4.x. Also suggest switching to the more specific find modules if possible. 16 January 2015, 21:06:21 UTC
99f66e9 Merge branch 'fix-cmake-org-links' into release 16 January 2015, 20:51:16 UTC
91fbcda Help: Update cmake.org links to avoid redirects Some links to cmake.org now redirect, so link to the new pages directly. 16 January 2015, 20:50:44 UTC
8741991 Merge branch 'release-3.0' into release 16 January 2015, 14:04:02 UTC
9a92734 Merge branch 'eclipse-fix-cxx-natures' into release-3.0 16 January 2015, 13:55:02 UTC
6e6e0c4 Eclipse: Add org.eclipse.cdt.core.cnature to CXX projects (#15068) Since commit v3.0.0-rc1~335^2~1 (eclipse: Add natures for Eclipse based on enabled languages, 2013-08-29) CXX projects got only "ccnature", but Eclipse itself also adds "cnature" when creating C++ projects. Fix this by adding both for CXX projects. 16 January 2015, 13:54:39 UTC
41eb20f Merge branch 'fix-qcc-compiler-id' into release 15 January 2015, 14:59:25 UTC
d58396b Merge branch 'fix-COMPILE_FEATURES-genex' into release 15 January 2015, 14:59:19 UTC
0fcdc57 Merge branch 'cpack-PackageMaker-OSX-10.10' into release 15 January 2015, 14:59:12 UTC
a08a444 Merge branch 'fix-LOCATION-with-TARGET_OBJECTS' into release 14 January 2015, 15:34:10 UTC
86d6ab0 Merge branch 'FindRuby-zero-version' into release 14 January 2015, 15:33:58 UTC
80025e4 Merge branch 'FindRuby-fix-version' into release 14 January 2015, 15:33:52 UTC
365973c Merge branch 'FindBoost-update-versions' into release 14 January 2015, 15:33:47 UTC
46eae52 Merge branch 'backport-cpack_invalid_cmake_generator' into release 14 January 2015, 15:33:30 UTC
8909d88 Merge branch 'linux-XL-fortran' into release 14 January 2015, 15:33:25 UTC
9c9bc71 QNX: Fix detection of QCC compiler id (#15349) In commit v3.1.0-rc1~113^2 (Use a more reliable regex for extracting binary INFO strings, 2014-09-03) the matching of INFO: strings was made more strict and no longer matches just "INFO:qnxnto". Use "INFO:qnxnto[]" instead to conform to the new pattern. 14 January 2015, 15:28:59 UTC
ea91623 CPack: Avoid crash on invalid CMake generator name (#15308) Case where CPACK_CMAKE_GENERATOR value is non existent or or contains multiple words that were not quoted was not handled and produced a segmentation fault. 14 January 2015, 13:38:23 UTC
4048f7c FindBoost: Add latest Boost version 1.57.0 and next milestone 1.58.0 13 January 2015, 13:59:13 UTC
23f3798 cmTarget: Compute link language of TARGET_OBJECTS with CMP0026 OLD (#15338) Commit v3.1.0-rc1~297^2~5 (cmTarget: Drop 'head' argument from GetSourceFiles, 2014-07-10) exposed a dormant bug in source file computation, causing the test case to regress. After that commit, the source file computation and caching finds an existing container of source files. Prior to that patch, the GetSourceFiles method was called with either a null pointer for the head cmTarget, or it was called with the this pointer. The processSources method is eventually called, which normalizes the difference between the null pointer and the this pointer for the head target. However, the cache key depends on the actual pre-normalized pointer. The change in that commit caused the entry to be found in the cache where it was not before, which resulted in incorrect behavior. Prior to that commit, the test case also fails if the GetSourceFiles overload taking a vector<cmSourceFile*> is changed to normalize the head target at the beginning of the method: cmTarget const* head = head_ ? head_ : this; Such a construct was correctly used in other locations where similar caching was in place, before being removed in commit v3.1.0-rc1~310^2~25 (cmTarget: Remove 'head' argument from GetLinkInformation, 2014-06-12), but is not neccessary anymore. Commit v3.1.0-rc1~674^2~2 (cmTarget: Cache the cmSourceFiles in GetSourceFiles., 2014-04-05) introduced the caching, but fails the test case for an unrelated reason. That unrelated error was introduced in commit v3.1.0-rc1~688^2~5 (cmTarget: Allow any generator expression in SOURCES property., 2014-03-18) and fixed in commit v3.1.0-rc1~561^2~1 (cmTarget: Fix listing of source files at configure-time., 2014-04-13). All commits which fail the test case in the testable way do so when such a cached version of the source files is found and returned at generate time. In the test case, the cached content is populated at configure-time through the use of the deprecated LOCATION property with CMP0026 OLD. The cached content is an empty container for the bar target in the test case, because its source file 'foo.cpp.o' is not known until generate-time. That means that no source files are available to compute the link language and the reported error is issued. The actual problem is that the SourceFilesMap should be cleared after configure time by cmTarget::ClearLinkMaps. Clear it there now. 13 January 2015, 08:36:20 UTC
dd5d2eb FindRuby: fix selection of version x.0 (#15345) When "Ruby_FIND_VERSION_MINOR" is 0, the "if(Ruby_FIND_VERSION_MAJOR AND Ruby_FIND_VERSION_MINOR)" check evaluated to false. 12 January 2015, 18:28:02 UTC
ac59223 XL: Fix link flags for executables on Linux with XL compilers Use "-Wl,-export-dynamic" with XL to match the "-rdynamic" flag used with GNU-like compilers. 12 January 2015, 17:59:52 UTC
45ec182 Features: Fix the COMPILE_FEATURES genex for unavailable features. Previously, the genex tested only for CMake knowledge of the feature, but not compiler knowledge of the feature. 12 January 2015, 15:30:43 UTC
2bead0e cmMakefile: Rename a method to what it really does. The method does not test availability of compile features. 12 January 2015, 15:30:43 UTC
ef1f4f4 Merge branch 'backport-copyright-year' into release 12 January 2015, 14:14:45 UTC
3515b0a Copyright.txt: Update year range to end in 2015 12 January 2015, 14:14:16 UTC
70abf6e CPack: Fix PackageMaker internal versioning for OS X 10.10 Avoid using a floating point value to represent the version, since "10.10" would be treated as "10.1". 12 January 2015, 14:12:50 UTC
ddca664 Merge branch 'xcode-ios-compiler-id' into release 12 January 2015, 14:01:18 UTC
f3ad57d Merge branch 'doc-CMAKE_FIND_PACKAGE_NAME' into release 12 January 2015, 14:01:10 UTC
1f41ec2 Merge branch 'fix-autouic-regression' into release 12 January 2015, 14:00:03 UTC
9a67373 QtAutoUic: Add a test for the regression in the parent commit. 12 January 2015, 00:41:27 UTC
7b7209f Xcode: Do not require code signing for compiler id (#15214) The approach in commit v3.1.0-rc1~1^2 (Xcode: Fix compiler id detection when code signing is required, 2014-10-22) still requires a code signing key when targeting a real device. Instead set CODE_SIGNING_REQUIRED to "NO" to tell Xcode not to sign at all. Drop the corresponding setting of the code signing identity. 11 January 2015, 21:50:39 UTC
8435088 Help: Document CMAKE_FIND_PACKAGE_NAME variable 11 January 2015, 20:20:14 UTC
b8abd25 find_package: Document CMAKE_FIND_PACKAGE_NAME variable Signed-off-by: Gregor Jasny <gjasny@googlemail.com> 11 January 2015, 20:16:48 UTC
7c58569 QtAutoUic: Restore source file AUTOUIC_OPTIONS settings The "." in the extension was dropped by commit v3.1.0-rc1~556^2~2 (cmSourceFile: Cache the isUiFile check, 2014-02-08) by mistake. This caused the options to not be set. 11 January 2015, 20:11:18 UTC
802d0aa FindRuby: Fix output check in _RUBY_CONFIG_VAR Since commit v2.8.8~173^2 (FindRuby: clean up querying variables from Ruby, 2012-02-17) we query RbConfig::CONFIG first and, if the command fails or its output equates to a false constant, then fall back to querying Config::CONFIG. Due to the above, an error condition exists with Ruby 2.2.0; when querying RbConfig::CONFIG['TEENY'], the output of '0' will be discarded since it matches the false constant '0'. In previous versions this wasn't a problem, but Ruby 2.2 has completely removed Config::CONFIG. This causes RUBY_VERSION_PATCH to be set to an empty string and the Ruby version to be detected as '2.2.' (instead of '2.2.0'). Fix the output check to explicitly look for an empty string before using the fallback query method. (Someone more familiar with Ruby might be able to deem the fallback as unnecessary and fully remove it.) 11 January 2015, 19:49:51 UTC
ca5fe16 Merge branch 'fix-empty-target-property-queries' into release 11 January 2015, 16:50:14 UTC
c6d03a1 tests: add tests for querying properties 11 January 2015, 16:45:44 UTC
76ff92e set_tests_properties: fix documentation The error is raised if the *test* doesn't exist, not the property. 11 January 2015, 16:45:43 UTC
2821486 get_test_property: clarify the documentation If either the test or the property doesn't exist, NOTFOUND will be used. No error is raised in either case. 11 January 2015, 16:45:43 UTC
34a9909 get_target_property: discern empty from undefined properties (#15333) This was accidentally regressed by commit v3.1.0-rc1~812^2~50 (stringapi: Use strings for property names, 2013-09-02). 11 January 2015, 16:43:58 UTC
ac16b88 Merge branch 'FindSDL-quoting' into release 08 January 2015, 19:48:33 UTC
67516fb FindSDL: Allow if() to dereference SDL_INCLUDE_DIR for matching Otherwise the syntax is incorrect when the variable is empty. 08 January 2015, 19:47:39 UTC
f00e44a Merge branch 'FindCUDA-cross' into release 08 January 2015, 19:43:53 UTC
13a2154 Merge branch 'FindIce-CMP0054' into release 08 January 2015, 19:43:42 UTC
13f0653 Merge branch 'doc-CXX_STANDARD-14' into release 08 January 2015, 19:43:21 UTC
a2e4b09 Merge branch 'doc-if-variable-not-defined' into release 08 January 2015, 19:43:16 UTC
3446042 Merge branch 'kwsys-Terminal-xterm-termite' into release 08 January 2015, 19:43:10 UTC
d5846eb FindCUDA: Do not assume CMAKE_SYSTEM_PROCESSOR is set CMAKE_SYSTEM_PROCESSOR is not guaranteed to be defined (per http://www.cmake.org/Wiki/CMake_Cross_Compiling), and when cross compiling where it happens to be undefined, this module was broken. Reviewed-by: Rolf Eike Beer <eike@sf-mail.de> 08 January 2015, 19:39:16 UTC
cbaf080 FindIce: Port to work with CMP0054 NEW behavior Do not quote if() arguments meant to test variable definitions. 08 January 2015, 19:13:48 UTC
72a0d6d Help: Document valid 14 value for CXX_STANDARD. (#15339) Support was added in commit v3.1.0-rc1~475^2 (Features: Add support for C++14 features., 2014-05-06), but the documentation for this property was not amended. 08 January 2015, 18:55:29 UTC
7a2c3f0 Help: Clarify if(<variable>) documentation (#15335) When the variable is not defined the signature is actually accepting a string. Also clarify fall-through from if(<constant>) case. 08 January 2015, 18:43:40 UTC
2866a50 KWSys Terminal: Add xterm-termite to VT100 color support whitelist 08 January 2015, 17:02:37 UTC
f35feba Merge branch 'doc-octothorpe-escaping' into release 24 December 2014, 11:41:56 UTC
8afa15f Merge branch 'ninja-fix-subdir-objlib-languages' into release 24 December 2014, 11:41:39 UTC
8d70a91 Help: Add 3.1 release note about '#' escaping in Makefiles (#15322) The change in commit v3.1.0-rc1~174^2 (Makefile: Handle '#' in COMPILE_OPTIONS, 2014-08-12) was not compatible with code that tries to workaround the original bug. Unfortunately there is no good way to fix the bug in a compatible way. Add a release note to call attention to the change. 23 December 2014, 13:27:05 UTC
07fc7b7 Tests: Test using objects from a language enabled in a subdirectory (#15325) Add a test case that enables CXX in the top level and C in a subdirectory. Create an executable in the top level that uses C objects compiled in the subdirectory. Strictly speaking this is not defined behavior for all language combinations, but happens to work in this case. Test this behavior since projects might try to use it. 23 December 2014, 01:13:40 UTC
fdbfcfd Ninja: Generate rules only for languages compiled in a target (#15325) Refactoring in commit v3.1.0-rc1~688^2~2 (cmTarget: Compute languages from object libraries on demand, 2014-03-18) taught cmTarget::GetLanguages to (correctly) include the languages of object library sources. Previously this was done only in cmTarget::ComputeLinkImplementationLanguages to choose the linker language. The Ninja generator writes out generic build rules for each language compiled within a target using the rule variables defined in the directory of the target. This only needs to be done for languages actually compiled within the current target. Switch from using the cmTarget::GetLanguages method to get the list of languages over to using cmTarget::GetSourceFiles directly so we do not get the languages in object libraries. Strictly speaking this should make no difference because it is not safe to use objects from a language not enabled in the directory containing a target or else the link information for the language may not be considered. However, in cases when no link information happens to be needed for a language it was possible in CMake 3.0 and below to enable a language only in a subdirectory providing an object library, and then use the objects from a containing directory. The above change teaches the Ninja generator to continue working in this case. 23 December 2014, 01:13:30 UTC
62b1998 Merge branch 'ninja-fix-crash-on-error' into release 23 December 2014, 01:00:07 UTC
9a13fcb Ninja: Do not crash when CMAKE_<LANG>_COMPILE_OBJECT is empty (#15325) 22 December 2014, 23:36:07 UTC
d62733b Merge branch 'CPackComponent-docs-fix' into release 22 December 2014, 19:13:01 UTC
6401639 Help: Small fixes in CPackComponent documentation 22 December 2014, 16:23:46 UTC
9755fd0 Merge branch 'backport-suncc-fixes' into release 22 December 2014, 15:00:03 UTC
90f5845 Merge branch 'doc-mingw-makefiles' into release 22 December 2014, 14:59:57 UTC
844f98c Help: Clarify MinGW v. MSYS Makefiles generators (#15319) Explain the usage of each generator more clearly and reference each as an alternative to the other. Suggested-by: Craig Hicks <hicks111@hotmail.com> 19 December 2014, 14:07:25 UTC
107dcac Fix compilation with the Oracle / Sun compiler (#15318) One piece of code has some ambiguous type deduction that seems to resolve correctly for most compilers but not for the Oracle compiler. Make it more explicit. 18 December 2014, 16:23:41 UTC
cbbe840 Merge branch 'bootstrap-solaris' into release 18 December 2014, 16:10:09 UTC
44c6db6 bootstrap: Fix syntax for Solaris 10 shell (#15317) In commit v3.1.0-rc2~7^2 (Workaround for short jump tables on PA-RISC, 2014-11-04) we added use of shell syntax not supported on the Solaris shell. Avoid using the '!' operator. Reported-by: Friedrich Haubensak <hsk@imb-jena.de> 18 December 2014, 16:08:55 UTC
8af6077 Merge branch 'doc-INTERFACE-target-type' into release 17 December 2014, 21:05:24 UTC
back to top