https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
3c357bf Added functionality to set RemoteDirectory in DeploymentTool and DebuggerTool section in vcproj configuration for VisualStudio7Generator. You can set path_to_remote_dir to target property DEPLOYMENT_REMOTE_DIRECTORY in your CMakeList.txt. This functionality is only for WinCE project. E.g. set_target_properties(${TARGET} PROPERTIES DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage" ) creates section in vcproj->VisualStudioProject->Configurations->Configuration: <DeploymentTool ForceDirty="-1" RemoteDirectory="\FlashStorage" RegisterOutput="0" AdditionalFiles=""/> <DebuggerTool RemoteExecutable="\FlashStorage\target_full_name" Arguments="" /> 15 March 2016, 14:47:21 UTC
8913ccc CMake Nightly Date Stamp 02 March 2016, 05:01:05 UTC
3cc22df CMake Nightly Date Stamp 01 March 2016, 05:01:04 UTC
26d615a CMake Nightly Date Stamp 29 February 2016, 05:01:04 UTC
b500c98 CMake Nightly Date Stamp 28 February 2016, 05:01:03 UTC
499be36 CMake Nightly Date Stamp 27 February 2016, 05:01:04 UTC
6b0a664 Merge topic 'compiler-check-message' f3ac0651 Improve compiler check message on non-Make generators 26 February 2016, 15:31:32 UTC
467f83d Merge topic 'fix_coverage_file_searching' bc29ed54 CTest: Make coverage file selection more specific. 26 February 2016, 15:31:30 UTC
79d4b5b Merge topic 'try_compile-target-type' 7f1bd9fe try_compile: Add option to control type of target 26 February 2016, 15:31:28 UTC
cc7a1b1 Merge topic 'file-download-status-hash-mismatch' 6c9586f9 file(DOWNLOAD): Fill STATUS variable on hash mismatch (#15987) 26 February 2016, 15:31:24 UTC
9f7a232 CMake Nightly Date Stamp 26 February 2016, 05:01:05 UTC
bc29ed5 CTest: Make coverage file selection more specific. When performing some other testing, the globs for Blanket.js and Delphi code coverage are picking up unintended files. Change the query for the Delphi coverage to follow the naming convention, and check the second line of the found JSON files for certain text before parsing them as coverage files. 25 February 2016, 18:01:37 UTC
6c9586f file(DOWNLOAD): Fill STATUS variable on hash mismatch (#15987) Although we fail with an error on a hash mismatch, it is not a fatal error so the script may continue processing. If the download itself had no error then report in the STATUS variable that the operation was not successful due to the hash mismatch. Suggested-by: Tobias Hieta <tobias@hieta.se> 25 February 2016, 16:40:50 UTC
f8af218 Merge topic 'vs14-debug-enum-older-toolsets' dc422d27 VS: Fix VS 2015 .vcxproj debug setting for older toolsets (#15986) 25 February 2016, 14:00:27 UTC
c842411 Merge topic 'AddNewEclipseVersions' aff38945 Eclipse: only add C/CXX macros if the language is enabled 6ee6b17e Eclipse: add newer version numbers 25 February 2016, 14:00:24 UTC
dd99bff Merge topic 'test-cmake_parse_arguments' 43025124 cmake_parse_arguments: Additional regression tests 25 February 2016, 14:00:21 UTC
f3ac065 Improve compiler check message on non-Make generators When we check for a working compiler we print a message of the form: Check for working <LANG> compiler: ... At one time CMAKE_<LANG>_COMPILER was not well-defined for all generators so we printed the generator name instead of the path to the compiler. Nowadays we always know the compiler, so update the message to print it unconditionally. This is more informative than the generator name, especially when a toolset (cmake -T) is used. Suggested-by: Gregor Jasny <gjasny@googlemail.com> 25 February 2016, 13:29:41 UTC
9b6fdbf CMake Nightly Date Stamp 25 February 2016, 05:01:08 UTC
aff3894 Eclipse: only add C/CXX macros if the language is enabled With this patch, the builtin macros and include dirs are only added to the project file if the C/CXX langauges are really enabled. I.e. before this patch the CXX-stuff was in the project file as soon as CXX had been enabled at least once for this build tree. I.e. disabling CXX later on did not remove the CXX macros etc. from the project file (related to #15150) Alex 24 February 2016, 21:13:04 UTC
6ee6b17 Eclipse: add newer version numbers Alex 24 February 2016, 20:07:45 UTC
dc422d2 VS: Fix VS 2015 .vcxproj debug setting for older toolsets (#15986) Since commit v3.4.2~2^2 (VS: Fix VS 2015 .vcxproj file value for GenerateDebugInformation, 2016-01-08) we generate invalid project files for the v110 and v120 toolsets. VS complains: C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(639,9): error MSB4030: "Debug" is an invalid value for the "GenerateDebugInformation" parameter of the "Link" task. The "GenerateDebugInformation" parameter is of type "System.Boolean". This reveals that our VS flag map selection should be based on the toolset instead of the version of VS. However, that will be a non-trivial change so for now fix this particular use case by hard-coding a correction to the flag map. Reported-by: Gregor Jasny <gjasny@googlemail.com> 24 February 2016, 17:29:50 UTC
926cf99 Merge branch 'release' 24 February 2016, 16:11:45 UTC
12f0655 Merge topic 'doc-typos' 33507e2a Help: Fix typos in cmake-packages.7 manual 24 February 2016, 16:10:36 UTC
6e6f4d8 Merge branch 'doc-typos' into release 24 February 2016, 15:13:45 UTC
4302512 cmake_parse_arguments: Additional regression tests Add regression tests for the arguments handling in cmake_parse_arguments. The tests were run also against cmake 3.4.1 maint branch to verify that there are no regressions. Signed-off-by: Dimitar Yordanov <dimitar.yordanov@sap.com> Signed-off-by: Matthias Maennich <matthias.maennich@sap.com> 24 February 2016, 15:07:30 UTC
33507e2 Help: Fix typos in cmake-packages.7 manual 24 February 2016, 15:05:24 UTC
2039bf4 Merge topic 'CodeBlocksParallelFlag' 84ccd4f7 CodeBlocks: generate parallel project files (make -j) 24 February 2016, 14:39:25 UTC
99895f8 Merge topic 'xcode-refactor-xcodeobject' b860a925 Xcode: Refactor block writes to allow any level of nesting 24 February 2016, 14:39:22 UTC
2186cff Merge topic 'xcode-remove-reftype' 572797f9 Xcode: Write refType only for Xcode 1.5 24 February 2016, 14:39:20 UTC
0f48312 Merge topic 'update-kwsys' d010ba9f Merge branch 'upstream-KWSys' into update-kwsys a132064b KWSys 2016-02-22 (4847aedd) 24 February 2016, 14:39:18 UTC
3cff48b Merge topic 'doc-cmake-E-details' b3475030 Help: Clarify `cmake -E` command behavior with respect to file existence 24 February 2016, 14:39:15 UTC
8f8418c Merge topic 'test-XCTest-sdkroot' d8cba536 Tests: Fix XCTest when ENV{SDKROOT} is set 24 February 2016, 14:39:13 UTC
6f00fc5 Merge topic 'test-FindPackageModeMakefileTest-optionally' c05678ad Tests: Add option to disable FindPackageModeMakefileTest 24 February 2016, 14:39:10 UTC
be98577 Merge topic 'revert-automoc-src-per-dir' 091b649e Revert "Automoc: Fix support of files with the same name (#12873)" 24 February 2016, 14:39:08 UTC
b860a92 Xcode: Refactor block writes to allow any level of nesting Reviewed-by: Gregor Jasny <gjasny@googlemail.com> 24 February 2016, 14:36:54 UTC
572797f Xcode: Write refType only for Xcode 1.5 This field is not expected by newer versions. 24 February 2016, 14:35:54 UTC
3dd42fe CMake Nightly Date Stamp 24 February 2016, 05:01:05 UTC
84ccd4f CodeBlocks: generate parallel project files (make -j) This is done the same way as for Eclipse: cmake tries to determine the number of CPUs, and then adds the respective -jN to the make invocations in the project file. Alex 23 February 2016, 21:37:44 UTC
f389e6d CMake Nightly Date Stamp 23 February 2016, 05:01:05 UTC
d010ba9 Merge branch 'upstream-KWSys' into update-kwsys * upstream-KWSys: KWSys 2016-02-22 (4847aedd) 22 February 2016, 14:03:40 UTC
a132064 KWSys 2016-02-22 (4847aedd) Code extracted from: http://public.kitware.com/KWSys.git at commit 4847aedde22b0026accbb71e5480ed353a330e02 (master). Upstream Shortlog ----------------- Ben Boeckel (1): de83c4d4 SystemTools: support deleting junction points Chuck Atkins (1): 3e1b7395 SystemInformation: Ignore buffers and cache when reporting host memory use Costy Petrisor (1): 9fe15333 Update hidden includes to support CMake header dependency scanning Zack Galbreath (1): 4847aedd Process: Allow timeout to be changed after child starts 22 February 2016, 14:02:03 UTC
df246f7 CMake Nightly Date Stamp 22 February 2016, 05:01:03 UTC
7e32bd9 CMake Nightly Date Stamp 21 February 2016, 05:01:03 UTC
6872a4f CMake Nightly Date Stamp 20 February 2016, 05:01:05 UTC
7f1bd9f try_compile: Add option to control type of target Create a `CMAKE_TRY_COMPILE_TARGET_TYPE` option to specify use of `add_library(... STATIC ...)` for the generated test project. This will be useful for cross-compiling toolchains that cannot link a binary without custom flags or scripts. 19 February 2016, 19:07:38 UTC
c8d5db9 Merge branch 'doc-cmake-E-details' into release 19 February 2016, 18:06:38 UTC
b347503 Help: Clarify `cmake -E` command behavior with respect to file existence 19 February 2016, 18:03:09 UTC
509b1f0 Merge topic 'cpack-deb-autodep-ORIGIN-RPATH' e8daee5b CPack/Deb $ORIGIN handling in rpath b8263a2f CPack/Deb Create DEBIAN directory for dpkg-shlibdeps 19 February 2016, 14:47:44 UTC
39a80a1 Merge topic 'reduce-entropy-consumption' f23f18ab cmSystemTools: Avoid excess entropy consumption by RandomSeed (#15976) b13a74b3 cmSystemTools: Remove unused include <fcntl.h> 19 February 2016, 14:47:41 UTC
c387325 Merge topic 'unix-timestamps' 6727270b CMake: Extend TIMESTAMP sub-commands with new unix time format specifier 19 February 2016, 14:47:39 UTC
3e3a12a Merge topic 'fix-CPACK_INSTALL_CMAKE_PROJECTS-subdirectory' 26fdd9c3 CPack: Fix CPACK_INSTALL_CMAKE_PROJECTS SubDirectory (4th) option 19 February 2016, 14:47:36 UTC
f23f18a cmSystemTools: Avoid excess entropy consumption by RandomSeed (#15976) Read `/dev/urandom` without buffering to avoid taking more than we need. 19 February 2016, 14:44:59 UTC
b13a74b cmSystemTools: Remove unused include <fcntl.h> We do not seem to need this header anymore, and including it on AIX causes `#define open open64` which breaks `std::ifstream::open` calls. 19 February 2016, 14:44:59 UTC
d8cba53 Tests: Fix XCTest when ENV{SDKROOT} is set We use the host OS X version as the deployment target for this test. This breaks if the SDKROOT environment variable specifies an incompatible SDK version. Explicitly specify `macosx` as the SDK so that CMake will automatically select a version matching the deployment target. 19 February 2016, 14:28:27 UTC
c05678a Tests: Add option to disable FindPackageModeMakefileTest This test does not work in all environments, so add an option to disable it. 19 February 2016, 14:10:44 UTC
091b649 Revert "Automoc: Fix support of files with the same name (#12873)" This reverts commit 9beb2744d7685fca9cd5717308d4457dffdefcdc. Our AUTOMOC documentation states that it should be possible to `#include "moc_foo.cpp"` in `foo.cpp`, and this will not work if the file is placed in a different directory. Another solution will need to be found to the original problem. Reported-by: Stephen Kelly <steveire@gmail.com> 19 February 2016, 13:59:17 UTC
29c266e CMake Nightly Date Stamp 19 February 2016, 05:01:05 UTC
e8daee5 CPack/Deb $ORIGIN handling in rpath Release not for fix of bug 12431 19 February 2016, 00:42:19 UTC
b8263a2 CPack/Deb Create DEBIAN directory for dpkg-shlibdeps If CMAKE_INSTALL_RPATH is set and contains $ORIGIN then dpkg-shlibdeps searches for the DEBIAN directory in order to resolve $ORIGIN in the rpath to a directory. We need to create the DEBIAN directory for this to work. 19 February 2016, 00:27:36 UTC
9f40f65 Merge branch 'release' 18 February 2016, 18:41:46 UTC
1c6f917 Merge branch 'release' 18 February 2016, 15:49:27 UTC
d203761 CMake 3.5.0-rc3 18 February 2016, 15:41:26 UTC
6727270 CMake: Extend TIMESTAMP sub-commands with new unix time format specifier The new `%s` format specifier is substituted by file()/string() `TIMESTAMP` sub-commands with the number of seconds since unix-epoch (1970-01-01 00:00:00 UTC). Co-Author: Nils Gladitz <nilsgladitz@gmail.com> 18 February 2016, 15:30:13 UTC
937f7fd Merge topic 'doc-install-component-association' d7c6b710 Merge branch 'backport-doc-install-component-association' into doc-install-component-association c978223c Help: Clarify install(TARGETS) INCLUDES DESTINATION option 70f2708f Help: Clarify install(TARGETS) INCLUDES DESTINATION option 18 February 2016, 15:08:06 UTC
e503941 Merge topic 'de-deprecate-CMakeForceCompiler' beaa4fa5 CMakeForceCompiler: De-deprecate until more use cases have alternatives 18 February 2016, 15:08:03 UTC
2321e63 Merge topic 'fix-static-private-non-target-depends' 87f44b75 Fix export of STATIC library PRIVATE non-target dependencies 18 February 2016, 15:08:01 UTC
1b369aa Merge topic 'FindCUDA-verbatim' 1911cda0 FindCUDA: Fix regression under Visual Studio generators 18 February 2016, 15:07:58 UTC
135a0df Merge topic 'automoc-src-per-dir' 9beb2744 Automoc: Fix support of files with the same name (#12873) 18 February 2016, 15:07:56 UTC
26fdd9c CPack: Fix CPACK_INSTALL_CMAKE_PROJECTS SubDirectory (4th) option 18 February 2016, 14:37:59 UTC
ede2a6e CMake Nightly Date Stamp 18 February 2016, 05:01:04 UTC
3dd420b Merge branch 'FindCUDA-verbatim' into release 17 February 2016, 20:25:44 UTC
1911cda FindCUDA: Fix regression under Visual Studio generators 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. However, this breaks the special `$(VCInstallDir)` placeholder used with Visual Studio generators. Since we do not support preservation of such placeholders with VERBATIM (see issue #15001) we must fall back to not using VERBATIM when the placeholder is used. A better fix would be to stop using `$(VCInstallDir)` and use the value of `CMAKE_${CUDA_C_OR_CXX}_COMPILER` instead, but that will require additional semantic and documentation changes. For now simply fix the regression with the above approach. Reported-by: Stephen Sorley <Stephen.Sorley@jhuapl.edu> 17 February 2016, 20:20:56 UTC
ef10f52 Merge branch 'fix-static-private-non-target-depends' into release 17 February 2016, 19:03:11 UTC
87f44b7 Fix export of STATIC library PRIVATE non-target dependencies In commit v3.5.0-rc1~43^2 (Fix export of STATIC library PRIVATE dependencies with CMP0022 NEW, 2016-01-15) we taught target_link_libraries to generate `$<LINK_ONLY:$<TARGET_NAME:dep>>` in INTERFACE_LINK_LIBRARIES instead of `$<LINK_ONLY:dep>` so that `dep` can be recognized as a target name and updated during export. However, this approach does not work when `dep` is just a plain library name and not a target because `$<TARGET_NAME:...>` requires the name of a reachable target. Since we do not know during target_link_libraries whether the name will correspond to a reachable target or not, we cannot inject the `$<TARGET_NAME:...>` expression. Revert this change and solve the original problem instead by teaching the export logic to recognize and update target names directly in `$<LINK_ONLY:...>` expressions. Reported-by: Ben Boeckel <ben.boeckel@kitware.com> 17 February 2016, 19:01:11 UTC
ed1b343 Merge topic 'FindwxWidgets-msys2-paths' bf643286 FindwxWidgets: Resolve Cygwin/MSYS paths to Windows paths 17 February 2016, 15:25:31 UTC
0cd8633 Merge topic 'FindProtobuf-version' bb7a41ab FindProtobuf: check version 17 February 2016, 15:25:28 UTC
445a37f Merge topic 'CodeBlocks-more-compilers' 184da3f4 CodeBlocks: improve support for different compilers 17 February 2016, 15:25:26 UTC
a13a6ee Merge branch 'backport-doc-install-component-association' into release 17 February 2016, 15:16:14 UTC
d7c6b71 Merge branch 'backport-doc-install-component-association' into doc-install-component-association 17 February 2016, 15:15:30 UTC
c978223 Help: Clarify install(TARGETS) INCLUDES DESTINATION option The option does not actually participate in argument groups like the others because it does not actually install anything. Fix the order in the documentation accordingly. Reported-by: Daniel Wirtz <daniel.wirtz@simtech.uni-stuttgart.de> 17 February 2016, 15:14:54 UTC
70f2708 Help: Clarify install(TARGETS) INCLUDES DESTINATION option The option does not actually participate in argument groups like the others because it does not actually install anything. Fix the order in the documentation accordingly. Reported-by: Daniel Wirtz <daniel.wirtz@simtech.uni-stuttgart.de> 17 February 2016, 15:12:10 UTC
9dff5d9 Merge branch 'de-deprecate-CMakeForceCompiler' into release 17 February 2016, 14:22:47 UTC
beaa4fa CMakeForceCompiler: De-deprecate until more use cases have alternatives We deprecated this module in commit v3.5.0-rc1~295^2 (CMakeForceCompiler: Deprecate this module and its macros, 2015-10-19) in order to determine whether anyone still has use cases that require it. Indeed we still need to provide a way to work with toolchains that cannot link binaries without special flags. Remove the deprecation warnings until we can provide an alternative to the module for this use case. 17 February 2016, 14:15:18 UTC
bf64328 FindwxWidgets: Resolve Cygwin/MSYS paths to Windows paths We use `sh wx-config` to launch the `wx-config` tool so that it can run even on Windows. Since it is always a shell script its output may use POSIX paths even on Windows. Use `cygpath` to convert to Windows paths. 17 February 2016, 13:52:56 UTC
4468e08 CMake Nightly Date Stamp 17 February 2016, 05:01:05 UTC
9beb274 Automoc: Fix support of files with the same name (#12873) 16 February 2016, 15:45:19 UTC
184da3f CodeBlocks: improve support for different compilers More elaborate selection of the `compiler` tag in the generated CodeBlocks project file: * Fortran language support * support for several of the predefined compilers recognized by CodeBlocks (16.01) 16 February 2016, 15:18:38 UTC
bb7a41a FindProtobuf: check version Check found libraries version to match user required version. Protobuf compiler executable version is checked to be aligned with found libraries, raising a warning message otherwise. 16 February 2016, 15:09:39 UTC
8dfb6f8 Merge branch 'release' 16 February 2016, 14:54:06 UTC
a64fa04 Merge topic 'cmake-gui-reset-generator' da490e11 cmake-gui: Fix cmState initialization when changing generators (#15959) 16 February 2016, 14:52:36 UTC
e0a3009 Merge topic 'fix-cmake_parse_arguments-expansion' c8c45a2c cmake_parse_arguments: Restore ;-list argument flattening 16 February 2016, 14:52:34 UTC
dde82df Merge topic 'cpack-rpm-upper-cased-components' 7c7efd1e CPack/RPM support for upper cased component variables 16 February 2016, 14:52:30 UTC
c92547e Merge topic 'fix-export-header-test' 326ad994 Tests: fix GenerateExportHeader directory definitions 16 February 2016, 14:52:28 UTC
c0a0c7d Merge topic 'ninja-deterministic-gen' 46fa9583 Ninja: Fix non-determinism in generated target dependency order (#15968) 16 February 2016, 14:52:25 UTC
28126b8 CMake Nightly Date Stamp 16 February 2016, 05:01:03 UTC
f03cb19 CMake Nightly Date Stamp 15 February 2016, 05:01:04 UTC
7534a4d CMake Nightly Date Stamp 14 February 2016, 05:01:03 UTC
dec7d5c CMake Nightly Date Stamp 13 February 2016, 05:01:09 UTC
7c7efd1 CPack/RPM support for upper cased component variables CPACK_* variables expect component name in upper case. CPACK_RPM_* variables expected component name to be in same case as component name. This patch adds support for CPACK_RPM_* variables with upper case component names to match the convention with CPACK_* variables and also preserves same case component names for back compatibility. 13 February 2016, 01:09:32 UTC
326ad99 Tests: fix GenerateExportHeader directory definitions There's no need to stringify the values, but instead just pass in strings. The core problem is that the path may have tokens which are replaced by the preprocessor which causes an invalid path to be used. 12 February 2016, 18:50:32 UTC
back to top