https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
4340901 Minor style nitpics Add quotes around CMake variables, add C++ modeline on .h files, and replace quoted arguments by argument names in the if() command. 26 March 2016, 16:34:59 UTC
9b56528 CMake Nightly Date Stamp 26 March 2016, 04:01:10 UTC
06a8dc7 Merge topic 'cpackcomponents-priv-var' c70ac097 CPack: Exclude additional internal variables from CPackConfig.cmake 25 March 2016, 13:41:46 UTC
484d7ca CMake Nightly Date Stamp 25 March 2016, 04:01:06 UTC
b8268fa Merge branch 'release' 24 March 2016, 16:43:02 UTC
456d89f Merge branch 'release' 24 March 2016, 16:40:08 UTC
64130a7 CMake 3.5.1 24 March 2016, 13:56:42 UTC
6d36fc8 Merge topic 'fix-variable_watch-reallocation' c6104028 Avoid occasional use-after-free when a variable watch is executed 24 March 2016, 12:49:46 UTC
917d49e Merge topic 'cmake-depend-in-project-only' b06e17da Help: Add notes for topic 'cmake-depend-in-project-only' 52540245 Tests: Add test for CMAKE_DEPENDS_IN_PROJECT_ONLY variable b1e1aa1e Makefile: Optionally scan only source and build trees for dependencies 24 March 2016, 12:49:43 UTC
5b2acf6 Merge topic 'vs-startup-project' ad140c6e VS: Put ALL_BUILD in the PREDEFINED_TARGETS_FOLDER f069be05 VS: Fix default target support for targets nested inside a folder c05ea485 VS: Improve unit test macros 78ec0461 VS: Add option to choose the `.sln` startup project (#15578) 24 March 2016, 12:49:41 UTC
59f53f7 Merge topic 'FindBoost-xl-compiler' 4527b9c4 FindBoost: Add support for IBM XL compiler 24 March 2016, 12:49:38 UTC
3252e6e Merge topic 'doc-cmake_minimum_required-policy-reset' 1dc8486b Help: Organize and clarify `cmake_minimum_required` documentation 24 March 2016, 12:49:36 UTC
c70ac09 CPack: Exclude additional internal variables from CPackConfig.cmake In v2.8.12.1-654-g7621ad6 I added underscore prefixes to CPACK_ADDCOMP_(STR|UNAME) to prevent them from being automatically written to CPackConfig.cmake. Do the same for CPACK_ADDGRP_(STR|UNAME) and CPACK_INSTTYPE_(STR|UNAME). 24 March 2016, 08:28:41 UTC
02166c3 CMake Nightly Date Stamp 24 March 2016, 04:01:08 UTC
277b756 Merge branch 'fix-variable_watch-reallocation' into release 23 March 2016, 20:18:08 UTC
c610402 Avoid occasional use-after-free when a variable watch is executed Re-lookup a variable value when an associated VariableWatch is executed in cmMakefile::GetDefinition. This fixes a problem with 'def' sometimes becoming invalid due to memory reallocation inside an std::vector. In this case, the problem was that if the call to VariableAccessed actually executed a callback function, the internal state of the makefile has changed due to the associated function scope being pushed. This in turn implies that a new cmDefinitions instance was pushed in cmMakefile::VarTree. As cmLinkedTree is based on an std::vector, this push can have triggered reallocation of its internal memory buffer. However, as the value of 'def', which was computed on method entry, actually points to a property of one of the cmDefinitions instances in cmMakefile::VarTree, reallocation can invalidate the value of 'def' so that it cannot simply be returned at the end of the function. The solution implemented here is to simply lookup the value of 'def' again. 23 March 2016, 20:17:36 UTC
1dc8486 Help: Organize and clarify `cmake_minimum_required` documentation State more explicitly that `cmake_policy(VERSION)` is implied and explain the effects it has. 23 March 2016, 18:39:48 UTC
b06e17d Help: Add notes for topic 'cmake-depend-in-project-only' 23 March 2016, 18:03:01 UTC
5254024 Tests: Add test for CMAKE_DEPENDS_IN_PROJECT_ONLY variable 23 March 2016, 18:03:01 UTC
4527b9c FindBoost: Add support for IBM XL compiler 23 March 2016, 17:41:42 UTC
ad140c6 VS: Put ALL_BUILD in the PREDEFINED_TARGETS_FOLDER 23 March 2016, 17:22:15 UTC
f069be0 VS: Fix default target support for targets nested inside a folder It's not actually the first target in a `.sln` file that is treated as the default startup project, but rather the first fully defined target. 23 March 2016, 17:22:15 UTC
d196585 Merge topic 'CMakePackageConfigHelpers-relative-prefix' fd31feb0 CMakePackageConfigHelpers: allow to specify a relative CMAKE_INSTALL_PREFIX 23 March 2016, 15:19:31 UTC
f29fd5b Merge topic 'FindCUDA-verbatim' 72a97b7a FindCUDA: Fix regression in separate compilation (#16027) 23 March 2016, 15:19:28 UTC
4057667 Merge topic 'use-cmXMLWriter' 51465da1 CPack/IFW: port to cmXMLWriter 754485af cmExtraEclipseCDT4Generator: port to cmXMLWriter c45671b0 cmGlobalKdevelopGenerator: port to cmXMLWriter dcdc270e cmExtraCodeLiteGenerator: port to cmXMLWriter 27e09764 cmExtraCodeBlocksGenerator: port to cmXMLWriter d7407621 cmXMLWriter: add Doctype() method dd27e313 cmXMLWriter: overload Element() method for empty elements 23 March 2016, 15:19:19 UTC
0235eac Merge topic 'release-win64' 4cdd6363 Utilities/Release: Skip spurious Qt5Autogen test for nightly win64 binary 23 March 2016, 15:19:17 UTC
51465da CPack/IFW: port to cmXMLWriter 23 March 2016, 15:18:16 UTC
754485a cmExtraEclipseCDT4Generator: port to cmXMLWriter 23 March 2016, 15:18:15 UTC
c45671b cmGlobalKdevelopGenerator: port to cmXMLWriter 23 March 2016, 15:18:15 UTC
38caf1b CMake Nightly Date Stamp 23 March 2016, 04:01:06 UTC
6201c1a Merge topic 'timeout_after_match' de7afd29 Help: Add notes for topic 'timeout_after_match' 993e48d0 CTest: Optionally use a secondary test timeout after matching output 22 March 2016, 20:09:28 UTC
b1e1aa1 Makefile: Optionally scan only source and build trees for dependencies Add a `CMAKE_DEPENDS_IN_PROJECT_ONLY` variable to activate the behavior. 22 March 2016, 20:04:15 UTC
fd31feb CMakePackageConfigHelpers: allow to specify a relative CMAKE_INSTALL_PREFIX 22 March 2016, 18:30:01 UTC
208524b Merge topic 'test-rename-VSSolution' 5c1f4da8 Tests: Rename RunCMake.{SolutionGlobalSections => VSSolution} 22 March 2016, 17:04:24 UTC
c05ea48 VS: Improve unit test macros Change `getFirstProject` macro to more flexible version `getProjectNames` 22 March 2016, 16:41:30 UTC
f77ad2c Merge branch 'FindCUDA-verbatim' into release 22 March 2016, 15:36:45 UTC
de7afd2 Help: Add notes for topic 'timeout_after_match' 22 March 2016, 15:21:15 UTC
993e48d CTest: Optionally use a secondary test timeout after matching output Allow a test N seconds to complete after we detect a matching line in its output. Activate this behavior with a new TIMEOUT_AFTER_MATCH test property. 22 March 2016, 15:17:55 UTC
41c17c1 Merge topic 'ghs-try_compile' bf3e76d2 GHS: Fix try_compile (#15975) 22 March 2016, 15:15:41 UTC
2f9e655 Merge topic 'ninja-directory-targets' 9ead71df Help: Add notes for topic 'ninja-directory-targets' e9bf8ec8 Ninja: Add test for `$subdir/all` targets ca575fe9 Ninja: Add `$subdir/all` targets 22 March 2016, 15:15:38 UTC
88450a6 Merge topic 'TestBigEndian-log-output' 8e2aa6ca TestBigEndian: Log success to CMakeOutput.log, not CMakeError.log 22 March 2016, 15:15:35 UTC
86eb327 Merge topic 'fix-repeat-pkg-config' 6f4f9054 FindPkgConfig: set correctly named variables in cache (#15903) 22 March 2016, 15:15:33 UTC
d7cdec2 Merge topic 'add-bruce-c' 53c0dc2d Add support for Bruce C Compiler (BCC) 22 March 2016, 15:15:30 UTC
72a97b7 FindCUDA: Fix regression in separate compilation (#16027) Since commit v3.5.0-rc1~47^2 (FindCUDA: Support special characters in path, 2016-01-15) our add_custom_command calls use VERBATIM so that CMake will automatically quote special characters correctly. Fix the separate compilation code path to not add its own quoting when the VERBATIM option will be used. 22 March 2016, 15:05:02 UTC
9ead71d Help: Add notes for topic 'ninja-directory-targets' 22 March 2016, 12:01:14 UTC
e9bf8ec Ninja: Add test for `$subdir/all` targets 22 March 2016, 12:01:14 UTC
78ec046 VS: Add option to choose the `.sln` startup project (#15578) Add a `VS_STARTUP_PROJECT` directory property to specify the project that should be placed first in the `.sln` file so that it will be selected as the default startup project. Co-Author: Taylor Braun-Jones <taylor.braunjones@avigilon.com> 22 March 2016, 11:57:00 UTC
4cdd636 Utilities/Release: Skip spurious Qt5Autogen test for nightly win64 binary This test fails spuriously too often and prevents the nightly binary from finishing. Simply skip it for the nightly binary to allow it to complete more regularly. 22 March 2016, 11:47:40 UTC
1449b11 CMake Nightly Date Stamp 22 March 2016, 04:01:06 UTC
8e2aa6c TestBigEndian: Log success to CMakeOutput.log, not CMakeError.log 21 March 2016, 14:54:02 UTC
53c0dc2 Add support for Bruce C Compiler (BCC) Revise C compiler detection code to be K&R compatible. 21 March 2016, 14:51:50 UTC
bf3e76d GHS: Fix try_compile (#15975) 21 March 2016, 14:35:01 UTC
dcdc270 cmExtraCodeLiteGenerator: port to cmXMLWriter 21 March 2016, 14:11:53 UTC
27e0976 cmExtraCodeBlocksGenerator: port to cmXMLWriter 21 March 2016, 14:11:53 UTC
d740762 cmXMLWriter: add Doctype() method 21 March 2016, 14:11:53 UTC
dd27e31 cmXMLWriter: overload Element() method for empty elements 21 March 2016, 14:11:53 UTC
cd99217 Merge topic 'cpack-osx-optional-CoreServices' d84ba668 CPack: Avoid using OS X CoreServices if compiler fails on header (#16021) 21 March 2016, 13:39:24 UTC
8da0997 Merge topic 'find-blas-lapack-OpenBLAS' 5f6b4f69 Find{BLAS,LAPACK}: Add support for OpenBLAS (#16024) 21 March 2016, 13:39:21 UTC
63767a2 Merge topic 'osx-no-carbon' 52777366 Drop unnecessary LSRequiresCarbon reference from Info.plist files 21 March 2016, 13:39:19 UTC
2c3b8a1 Merge branch 'fix-repeat-pkg-config' into release 21 March 2016, 13:08:25 UTC
6f4f905 FindPkgConfig: set correctly named variables in cache (#15903) The fix in commit v3.5.0-rc1~27^2 (FindPkgConfig: set standard variables in the cache, 2016-01-20) added the wrong variable name to the cache. The test was only testing that the cache variable existed, not that it also had the correct value. Update the test to ensure that the cache value matches the local variable value. Reported-by: Bernd Lörwald 21 March 2016, 12:58:12 UTC
bbab373 CMake Nightly Date Stamp 21 March 2016, 04:01:04 UTC
33594f2 CMake Nightly Date Stamp 20 March 2016, 04:01:07 UTC
a9cb00c CMake Nightly Date Stamp 19 March 2016, 04:01:05 UTC
5c1f4da Tests: Rename RunCMake.{SolutionGlobalSections => VSSolution} The test will be suitable for covering other `.sln` content too. 18 March 2016, 17:20:42 UTC
5f6b4f6 Find{BLAS,LAPACK}: Add support for OpenBLAS (#16024) OpenBLAS (www.openblas.net) is the successor to GotoBLAS. 18 March 2016, 15:23:36 UTC
d9857c8 Merge branch 'cpack-osx-optional-CoreServices' into release 18 March 2016, 15:15:15 UTC
d84ba66 CPack: Avoid using OS X CoreServices if compiler fails on header (#16021) Some compilers on OS X report errors in the CoreServices framework headers. Check for support of the header ahead of time and compile the relevant code only when the header is available. 18 March 2016, 15:12:51 UTC
ca575fe Ninja: Add `$subdir/all` targets With the Makefile generator one can use `cd $subdir; make all` to build all targets associated with a given subdirectory. This is not possible to do with the Ninja generator since there is only one `build.ninja` file at the top of the build tree. However, we can approximate it by allowing one to run `ninja $subdir/all` at the top of the tree to build the targets in the corresponding subdirectory. Port logic from cmGlobalUnixMakefileGenerator3::WriteDirectoryRule2 to cmGlobalNinjaGenerator in order to produce equivalent directory-level targets. 18 March 2016, 14:59:01 UTC
5277736 Drop unnecessary LSRequiresCarbon reference from Info.plist files LSRequiresCarbon is long since unnecessary. It refers to requiring Carbon as opposed to Classic (OS 9 emulation). 18 March 2016, 13:47:03 UTC
9cdb37e Merge topic 'release-win64' c089485d Utilities/Release: Skip spurious Qt5Autogen test for nightly binary e903a9fc Utilities/Release: Create a Windows 64-bit binary dd630075 Utilities/Release: Rename scripts to match target platform 18 March 2016, 13:43:23 UTC
1bcdc4d Merge topic 'GenerateExportHeader-fix-name-leak' 6a6e5d89 GenerateExportHeader: Allow common NO_DEPRECATED_MACRO_NAME for multiple libs be5a8973 GenerateExportHeader: Do not define DEFINE_NO_DEPRECATED (#16022) 18 March 2016, 13:43:20 UTC
b7eb7e0 Merge topic 'cmake-gui-osx-identifier' 7b990e82 cmake-gui: Populate CFBundleIdentifier in our Info.plist file (#16023) 18 March 2016, 13:43:18 UTC
66d1464 Merge topic 'cpack-osx-no-carbon' c718070c CPack: Avoid requiring Carbon framework on OS X (#16021) 18 March 2016, 13:43:15 UTC
9e5f914 Merge topic 'vs-remote-directory' a3bcf2aa VS: Fix WinCE remote debugger tool per-config target name 18 March 2016, 13:43:13 UTC
9082590 CMake Nightly Date Stamp 18 March 2016, 04:01:06 UTC
1b03412 Merge branch 'cmake-gui-osx-identifier' into release 17 March 2016, 20:30:00 UTC
7b990e8 cmake-gui: Populate CFBundleIdentifier in our Info.plist file (#16023) 17 March 2016, 20:07:39 UTC
15a5653 Merge branch 'cpack-osx-no-carbon' into release 17 March 2016, 18:49:35 UTC
c718070 CPack: Avoid requiring Carbon framework on OS X (#16021) In commit v3.5.0-rc1~232^2 (CPackDMG: Add support for multilingual SLAs, 2015-10-19) we added use of the Carbon framework in order to get access to its APIs to convert Script Manager RegionCode values. This is not necessary. Instead we can use CoreServices. While at it, replace individual CoreFoundation includes with including the entire framework, which is the correct way. 17 March 2016, 17:53:51 UTC
6a6e5d8 GenerateExportHeader: Allow common NO_DEPRECATED_MACRO_NAME for multiple libs 17 March 2016, 14:40:58 UTC
be5a897 GenerateExportHeader: Do not define DEFINE_NO_DEPRECATED (#16022) Previously we allowed this definition to persist outside our header. This would cause conflicts across multiple such headers because the name was always the same. Fix this by avoiding the definition altogether. 17 March 2016, 14:40:24 UTC
cd569b9 Merge topic 'ios-install-combined-one-arch' e3fc2899 Fix iOS combined feature for single architecture targets 17 March 2016, 13:41:37 UTC
f6d66b0 Merge topic 'emacs-mode-help-off-by-one' 9dc384f6 cmake-mode.el: Fix help completion item lists with CMake >= 3.0 (#16019) 17 March 2016, 13:41:34 UTC
d9fc4df Merge topic 'use-GetCMakeRoot' 3144857e Avoid depending on CMAKE_ROOT cache entry internally (#16015) 17 March 2016, 13:41:32 UTC
a3bcf2a VS: Fix WinCE remote debugger tool per-config target name Fix the DebuggerTool RemoteExecutable value added by commit a22f9967 (VS: Optionally generate remote directory for WinCE projects, 2016-02-15) to account for the configuration when computing the target name. 17 March 2016, 13:37:51 UTC
c089485 Utilities/Release: Skip spurious Qt5Autogen test for nightly binary This test fails spuriously too often and prevents the nightly binary from finishing. Simply skip it for the nightly binary to allow it to complete more regularly. 17 March 2016, 13:32:53 UTC
e903a9f Utilities/Release: Create a Windows 64-bit binary Compile with `-D_WIN32_WINNT=0x502` to use a WinXP-compatible API. Compile with `-D_USING_V110_SDK71_` to tell the VS standard library headers that we are building with a WinXP-compatible Windows SDK. Link executables with `-subsystem:console,5.02` to make them runnable on Windows XP 64-bit. Ideally `cmake-gui` should instead be linked with `-subsystem:windows,5.02` but with the Ninja and Makefile generators CMake adds `-subsystem:windows` after our `-subsystem:console,5.02` flag and the linker seems to interpret this combination as we need. 17 March 2016, 13:32:16 UTC
dd63007 Utilities/Release: Rename scripts to match target platform The machine name we happen to use for the build is less informative than its platform. 17 March 2016, 13:30:30 UTC
811e297 CMake Nightly Date Stamp 17 March 2016, 04:01:06 UTC
9dc384f cmake-mode.el: Fix help completion item lists with CMake >= 3.0 (#16019) We run `cmake --help-*-list` to get a list of items for completion. Since CMake < 3.0 always printed "cmake version ..." on the first line of the output we have previously ignored the first line. However, CMake 3.0 and above do not print the version line so we should not ignore the first line or we miss one item. Ideally we should filter the first line out if it is "cmake version ..." in order to support CMake < 3.0 cleanly, but at worst the version line will show up as a completion option so simply including the first line is good enough for now. 16 March 2016, 17:32:57 UTC
bf07128 Merge branch 'release' 16 March 2016, 17:15:03 UTC
b06c217 Merge topic 'FindBoost-optional-indirect-depends' e2f387fa FindBoost: Tolerate missing indirect dependencies (#16013) 16 March 2016, 13:08:05 UTC
6e24546 Merge topic 'FindGTest-depends' a5d3d003 FindGTest: Automatically re-run cmake when tests change 16 March 2016, 13:08:03 UTC
f5eda70 Merge topic 'vs-remote-directory' a22f9967 VS: Optionally generate remote directory for WinCE projects 16 March 2016, 13:08:01 UTC
7fff134 Merge topic 'ninja-depfile-system-headers' 6d74e787 Ninja: Add dependencies on system-provided header files (#14914) 16 March 2016, 13:07:58 UTC
3144857 Avoid depending on CMAKE_ROOT cache entry internally (#16015) Use cmSystemTools::GetCMakeRoot() which always knows the location of our resources. Do not depend on CMAKE_ROOT because the user could unset it from the cache. 16 March 2016, 13:03:26 UTC
98f3edc CMake Nightly Date Stamp 16 March 2016, 04:01:05 UTC
a5d3d00 FindGTest: Automatically re-run cmake when tests change Tell CMake that it needs to re-run when test source files parsed by `gtest_add_tests` change so that we can re-scan for tests automatically. 15 March 2016, 19:21:37 UTC
a22f996 VS: Optionally generate remote directory for WinCE projects Teach the VS 2008 and 2005 generators to set the `RemoteDirectory` in `DeploymentTool` and the `RemoteExecutable` in `DebuggerTool`. Use a `DEPLOYMENT_REMOTE_DIRECTORY` target property to specify the value. 15 March 2016, 18:34:26 UTC
back to top