https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
1f6f114 CMake 3.1.0-rc3 08 December 2014, 14:09:24 UTC
e2c431d Merge branch 'xerces-rename' into release 05 December 2014, 18:32:50 UTC
eff4081 Merge branch 'doc-file-GENERATE-order' into release 05 December 2014, 18:32:46 UTC
fe21580 Help: Document file(GENERATE) signature option order In commit v3.1.0-rc1~484^2 (Help: Format and revise file() command documentation, 2014-05-23) the signature of file(GENERATE) was accidentally simplified too much and dropped specification of the required argument ordering. Restore the signature to make the order clear. 05 December 2014, 18:28:24 UTC
27141ee Modules: Rename FindXerces to FindXercesC The FindXerces module was added in commit v3.1.0-rc1~155^2 (FindXerces: New module to find Apache Xerces-C++, 2014-08-17). However, there are two implementations of Xerces, one in C++: http://xerces.apache.org/xerces-c/ and one in Java: http://xerces.apache.org/xerces-j/ Rename FindXerces to FindXercesC to clarify that it is about the C++ implementation. While at it, add the missing CMake 3.1 release note about this module. Suggested-by: Erik Sjölund <erik.sjolund@gmail.com> 04 December 2014, 15:41:26 UTC
c2d3710 Merge branch 'doc-mixed-case-commands' into release 04 December 2014, 15:04:29 UTC
607b39d Utilities/Sphinx: Fix link targets for mixed-case command names When a CMake domain 'command' object is defined by CMakeTransform or the 'cmake:command' directive, generate the link target with a lower-case name even if the command name is not all lower-case. This is needed to make cross-references to the command definition work since the 'cmake:command' role is marked with the 'lowercase' property. 04 December 2014, 15:03:26 UTC
1c104c0 Merge branch 'vs-phone-store-deployment-location' into release 03 December 2014, 14:32:42 UTC
7c28e7c Merge branch 'vs-hlsl-settings' into release 03 December 2014, 14:32:38 UTC
0e7c7bd Merge branch 'doc-CMAKE_CXX_KNOWN_FEATURES-typo' into release 03 December 2014, 14:32:32 UTC
6c8d573 Merge branch 'CPackIFW-doc-typos' into release 03 December 2014, 14:32:27 UTC
206117a Merge branch 'doc-Nsight-Tegra-toolchain' into release 03 December 2014, 14:32:22 UTC
352f246 VS: Add source file property to specify Windows App deployment location Add a VS_DEPLOYMENT_LOCATION source file property to specify where to put files that are part of the package. For example: set_property(SOURCE ${ASSET_FILES} PROPERTY VS_DEPLOYMENT_LOCATION "assets") Without this, sources marked with VS_DEPLOYMENT_CONTENT cannot be located properly. 03 December 2014, 14:31:59 UTC
2a224b4 VS: Add source file properties to set the hlsl shader entry point and model Create properties VS_SHADER_ENTRYPOINT and VS_SHADER_MODEL. Without these many .hlsl source files may not be possible to use. Extend the VSWinStorePhone test project to cover them. 03 December 2014, 14:30:59 UTC
37d684b Help: Fix typo in CMAKE_CXX_KNOWN_FEATURES docs Typo "ss defined" => "as defined". 03 December 2014, 14:12:17 UTC
17e1ead Merge branch 'fix-wince-unicode-entry-point' into release 03 December 2014, 14:08:40 UTC
681cda0 VS, WINCE: Fix entry point for Unicode builds When _UNICODE is defined VS uses wmain instead of main as the entry function. To make this correctly work on WindowsCE EntryPointSymbol needs to be set to mainWCRTStartup instead of mainACRTStartup for console applications and to wWinMainCRTStartup instead of WinMainCRTStartup for GUI applications. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> 03 December 2014, 14:07:11 UTC
4c07a00 CPackIFW: Correction of the module documentation 02 December 2014, 20:52:07 UTC
23e2bd7 Help: Document Nsight Tegra toolchain configuration (#15276) 02 December 2014, 19:40:25 UTC
f3ae286 Merge branch 'FindOpenGL-revert-imported-targets' into release 02 December 2014, 15:23:01 UTC
8c9ff4f Merge branch 'FindPythonInterp-Fix-1.4' into release 02 December 2014, 15:22:50 UTC
b85cd1b Merge branch 'doc-compile-features-typo' into release 02 December 2014, 15:22:39 UTC
4c8c3ba FindPythonInterp: fix version component variables for Python 1.4 (#15275) This bug was introduced in "FindPythonInterp: rework the version detection" 7d6db93de9ffc6e6092fa722aaf9c057dadcd634. 02 December 2014, 14:36:59 UTC
64f8c53 Help: Fix typo in cmake-compile-features(7) manual Fix spelling 'execptions' => 'exceptions'. 02 December 2014, 14:20:22 UTC
02e34de FindOpenGL: Revert support for imported targets (#15267) Revert the feature added by commit v3.1.0-rc1~420^2~2 (FindOpenGL: Provide imported targets for GL and GLU, 2014-05-31). Unfortunately it does not work on Windows because the full path to each library file is not actually known. The IMPORTED_LOCATION of an imported target must be a full path, but OPENGL_gl_LIBRARY is just 'opengl32' on Windows because the actual library file is in some implicit link directory that we may know know. More infrastructure will be needed in CMake to allow a name-only imported library. Until that exists, we will not be able to provide imported targets in FindOpenGL. 01 December 2014, 21:01:09 UTC
95b89e3 Merge branch 'link-no-empty-response-files' into release 01 December 2014, 18:59:41 UTC
9ea39ee Merge branch 'fix-implicit-lib-logging' into release 01 December 2014, 18:59:36 UTC
1c5be1f Makefile: Do not create an empty linker response file Since commit v3.1.0-rc1~821^2 (Windows: Use response files to specify link libraries for GNU tools, 2014-03-04) we use a response file to pass possibly long linker flag lists to the GNU linker on Windows. On MinGW, this may cause gfortran to use a response file to pass some flags to its own internal invocation. This is okay except when we are parsing implicit link flags from the compiler ABI detection build. If gfortran uses a response file in that case then we may miss extracting some of the implicit link flags, such as -lgfortran. Fortunately, in the compiler ABI detection case we do not actually link to anything so the response file is empty. Work around this problem by simply not using a response file when the list of flags it is used to pass is empty (or just whitespace). Reported-by: Bill Somerville <bill@classdesign.com> 01 December 2014, 18:49:26 UTC
20bf697 CMakeParseImplicitLinkInfo: Fix implicit library logging In commit v3.1.0-rc1~640^2~5 (Clean up usage of if(... MATCHES regex) followed string(REGEX REPLACE regex), 2014-04-06) we accidentally broke logging of the implicit library detection. Restore use of the intermediate 'lib' variable so that the log message is constructed properly. Reported-by: Bill Somerville <bill@classdesign.com> 01 December 2014, 17:58:33 UTC
5062bf7 Merge branch 'doc-ctest-j-typo' into release 01 December 2014, 14:28:41 UTC
df53aaf Help: Add missing space to ctest -j option description 01 December 2014, 14:26:48 UTC
58d3898 Merge branch 'target-sources-error-conditions' into release 01 December 2014, 13:55:45 UTC
baa283f Merge branch 'fix-transitive-OBJECT_SOURCES-context' into release 01 December 2014, 13:51:59 UTC
5445a99 Merge branch 'doc-installed-file-property' into release 01 December 2014, 13:49:13 UTC
bde103a Merge branch 'doc-CMP0053-dedup-char' into release 01 December 2014, 13:49:08 UTC
89bb34d Help: Add 3.1 release notes for INSTALL property scope 01 December 2014, 13:48:22 UTC
07254a8 Help: Document installed file property API Since commit v3.1.0-rc1~479^2~1 (Add an "installed file" property scope, 2014-05-15) the get_property and set_property commands support an 'INSTALL' scope. Add documentation for this scope. 01 December 2014, 13:48:19 UTC
a1aceb2 Help: Format set_property and get_property command docs 01 December 2014, 13:47:58 UTC
191d2b2 Help: Remove duplicate '#' in CMP0053 valid character list 01 December 2014, 13:32:51 UTC
8a75c7e Help: Document the export limitation of INTERFACE_SOURCES. 29 November 2014, 11:25:00 UTC
e134805 Export: Disallow export of targets with INTERFACE_SOURCES This can be allowed in the next release, but it needs to have some features present and tested such as * Ensuring that relative paths do not appear in the generated property. * Ensuring that paths to the source or build directories do not appear. * Generating a check in the file for CMake 3.1 or later so that the resulting property will be consumed. * Ensuring that any referenced targets are part of an export set and generating a check for them. * INSTALL_INTERFACE and BUILD_INTERFACE content. All of these checks are already done for INTERFACE_INCLUDE_DIRECTORIES, but it is too late to add them for INTERFACE_SOURCES for CMake 3.1. As the checks introduce some new error conditions, it is better to disallow exporting fully for this case and introduce proper error conditions later instead of policies. 29 November 2014, 11:24:59 UTC
bb5905b cmTarget: Don't allow relative paths in INTERFACE_SOURCES Follow the pattern of checks that are made for INTERFACE_INCLUDE_DIRECTORIES. Existence is already checked by cmSourceFile::GetFullPath. Add a check to disallow relative paths in source directories. Otherwise code such as target_sources(lib1 INTERFACE foo.cpp) would fail if consumed by a target in a different directory. Unlike the INTERFACE_INCLUDE_DIRECTORIES behavior, we don't care whether the entry comes from an IMPORTED target or not. In the include directories case, the directory for a non-imported target might not exist yet but might be created. In the sources case, a file which does not yet exist in the filesystem must be explicitly marked with the GENERATED property. Adjust existing tests and add a new test for the error. 29 November 2014, 11:24:59 UTC
d7e4bd3 Merge branch 'fix-source-case-matching' into release 26 November 2014, 22:17:41 UTC
84d124e Fix lookup of source names after conversion to their actual case (#15259) Since commit v3.1.0-rc1~688^2~15 (cmTarget: Add a method to obtain list of filenames for sources, 2014-03-17) we have code paths that lookup sources by strings containing their own full path after normalization to the actual case on disk. This fails in the case that a cmSourceFile has already been created with a different case in the filename. The comparison of the directory works because it is always normalized. Only the comparison of the file name fails. Fix this by using a case-insensitive comparison of source file names on platforms that do not have case-sensitive filesystems. 26 November 2014, 22:03:40 UTC
672f100 Genex: Fix evaluation context propagation for TARGET_OBJECTS. Extract a new method to encapsulate the requirements of evaluating dependent-expressions, namely, propagation of the EvaluateForBuildsystem setting, which is missing from the getLinkedTargetsContent implementation. Commit v3.1.0-rc1~688^2 (Genex: Only evaluate TARGET_OBJECTS to determine target sources., 2014-03-20) introduced an error case for use of TARGET_OBJECTS outside of the context of generating the buildsystem, as the path to object files may be dependent on buildsystem variables (See bug #15226). Commit v3.1.0-rc1~314^2 (Allow INTERFACE_SOURCES to specify $<TARGET_OBJECTS> (#14970), 2014-07-09) made it possible to propagate such content to dependent targets. While that commit propagated the EvaluateForBuildsystem setting for the case of a TARGET_PROPERTY expression, as generated for direct dependencies of a target in cmTargetInternals::AddInterfaceEntries, it did not add propagation for content from further transitive target dependencies, as determined by getLinkedTargetsContent. 26 November 2014, 21:16:15 UTC
f70f6ac Merge branch 'revert-cached-regex-clear' into release 26 November 2014, 19:12:39 UTC
7d674b5 Revert "ClearMatches: Only clear matches which were actually set" (#15261) This reverts commit v3.1.0-rc1~557^2~2 (ClearMatches: Only clear matches which were actually set, 2014-03-12). The optimization did not track the match count in the same scope as the variables, allowing possible inconsistency. Resolve conflicts in Source/cmIfCommand.cxx, Source/cmMakefile.cxx, and Source/cmMakefile.h by moving the changes to the new location of the code involved. 26 November 2014, 18:45:06 UTC
b3d9702 Merge branch 'FindwxWidgets-new-versions' into release 26 November 2014, 15:33:59 UTC
d2f2a2e Merge branch 'C-features-Wundef' into release 26 November 2014, 15:33:54 UTC
75dee2f FindwxWidgets: Add versions 3.0.1 and 3.0.2 26 November 2014, 15:15:53 UTC
e002f06 Merge branch 'fix-WCDH-docs' into release 25 November 2014, 15:10:50 UTC
c66f697 Merge branch 'fix-GNU-CXX-dialect-versions' into release 25 November 2014, 15:10:46 UTC
f8099e1 Merge branch 'default-lang-dialect' into release 25 November 2014, 15:07:34 UTC
d0af0fa WCDH: Make the header -Wundef safe for the C language. The __STDC_VERSION__ macro may be defined or not depending on the implementation dialect of C. Test that it is defined before testing its value. The CXX tests do not need such a change because they define __cplusplus in all dialects. 25 November 2014, 13:44:21 UTC
0db3db4 WCDH: Don't imply that MSVC is supported by the module. Remove the mention of it from the docs. 23 November 2014, 09:12:49 UTC
36bb100 Fix the test for running the CxxDialog unit test. The existing versions have been used since commit v3.1.0-rc1~635^2~8 (cmTarget: Add CXX_STANDARD and CXX_EXTENSION target properties., 2013-10-13), but further discussions since then increased the initial minimum compiler versions this feature is available for. 20 November 2014, 21:10:25 UTC
a3d0ae1 Features: Fix the default C dialect for Clang and GNU. Clang 3.4 uses C99 by default, and Clang 3.6 uses C11 by default: http://thread.gmane.org/gmane.comp.compilers.clang.devel/39379 GNU 4.9 uses C90 by default, and GNU 5.0 uses C11 by default: https://gcc.gnu.org/gcc-5/changes.html Test that the default compiler settings result in the expected dialect macros being defined for both C and CXX. Remove the unused main.c file from the CompileFeatures unit test. 20 November 2014, 17:24:59 UTC
64678cb Merge branch 'fix-openmp-fortran' into release 20 November 2014, 14:00:33 UTC
7d633eb FindOpenMP: Use fixed form Fortran test program This prevents the test program from failing when build as Fortran 77. Suggested-by: Alin Marin Elena <alinm.elena@gmail.com> 20 November 2014, 13:54:11 UTC
b1e7fe9 Merge branch 'backport-fix-CMP0054-MSVC' into release 20 November 2014, 13:53:47 UTC
543c430 Avoid if() quoted auto-dereference when checking for "MSVC" When testing CMAKE_<LANG>_COMPILER_ID values against "MSVC", do not allow the definition of the "MSVC" variable to be expanded. 19 November 2014, 21:22:56 UTC
5ee198d Merge branch 'FindJava-no-osx-stub' into release 19 November 2014, 21:15:43 UTC
dd37825 FindJava: Do not accept OS X stub 'java' as Java OS X provides a stub 'java' to inform callers that Java is not present. When checking the 'java -version' output, look for such a message and if found pretend 'java' was not found. Suggested-by: Sean McBride <sean@rogue-research.com> 19 November 2014, 21:14:56 UTC
c03c184 Features: Record C++11 dialect switch only for GNU 4.7 and later. Previous versions of GNU are not currently supported by this CMake feature. 19 November 2014, 08:39:44 UTC
49e2b68 Features: Fix references to CXX compiler version in Clang-C.cmake. 18 November 2014, 23:42:51 UTC
7565ab2 Features: Test the CXX compiler only if it has features. If using different C and CXX compilers, we might not have a feature-full CXX compiler at this point. 18 November 2014, 23:42:35 UTC
bea609a Merge branch 'vs-check-phone-store-tools' into release 17 November 2014, 20:39:17 UTC
536baaf Merge branch 'doc-sphinx-cmake-fixup' into release 17 November 2014, 20:39:09 UTC
5cda220 Utilities/Sphinx: Add missing call to note_explicit_target Sphinx calls document.note_explicit_target with any nodes.target() it creates. Add such a call when we create a document target in CMakeTransform. 17 November 2014, 20:37:31 UTC
d4fdfaa Merge branch 'doc-target_include_directories-fixup' into release 17 November 2014, 20:16:35 UTC
1d22ee6 Help: target_include_directories does not allow target names Since commit v2.8.11~227^2~1 (Don't allow targets args in the new target commands, 2013-01-29) the target_include_directories command does not support target names on the right hand side, but that commit forgot to remove it from the docs. It was never released with such support. Update the command documentation now. 17 November 2014, 19:47:42 UTC
598a316 Merge branch 'vs14-is-2015' into release 17 November 2014, 14:44:52 UTC
ec34b4b Merge branch 'kwsys-SharedForward-vs14' into release 17 November 2014, 14:44:45 UTC
689cd0d VS: Do not produce WinMD file for OBJECT libraries (#15228) They are implemented as static libraries for the IDE so treat them the same. 17 November 2014, 13:57:14 UTC
f5afb90 VS: Rename VS 14 generator to 'Visual Studio 14 2015' Now that we know the year component of this VS version we can add it to the generator name. For convenience, map the name without the year to the name with the year. 14 November 2014, 19:23:36 UTC
480ed9c KWSys SharedForward: Hard-code the ldpath buffer size to below VS 14 limit Visual Studio 14 (2015) complains if a static character array is declared with more than 65535 elements. This limit should be large enough for SharedForward clients, so just hard-code that instead of trying to compute a limit. 14 November 2014, 18:56:58 UTC
b20a32a VS: Improve error messages when compiler is not detected (#15228) CMake requires both the Desktop SDK and the correct platform SDK (Windows Phone or Windows Store) to be installed when targeting the Windows mobile platforms. Verify that the right platform components are installed and give a more detailed error message when something is wrong. 14 November 2014, 14:13:27 UTC
6a16d9c Merge branch 'vs-nsight-tegra-version' into release 13 November 2014, 19:07:10 UTC
bb3c87f VS: Change Nsight Tegra 2.0 Project Revision Number from 8 to 9 A hotfix to Nsight Tegra 2.0 needed to increase the project number. Teach CMake to generate the newer number for this version. 13 November 2014, 19:05:12 UTC
0d047e8 Merge branch 'no-cmake-self-install-when-cross-compiling' into release 13 November 2014, 15:22:06 UTC
4fba217 Merge branch 'no-AppleClang-C-features' into release 13 November 2014, 15:22:02 UTC
3d0addd Merge branch 'doc-install-SCRIPT-CODE-COMPONENT' into release 13 November 2014, 15:21:53 UTC
15f55cc Do not use just-built CMake to install itself when cross-compiling (#15248) The special case added by commit v2.4.0~3051 (When building CMake itself, use the new cmake to install so that the current cmake can be overwritten, 2004-06-09) does not make sense when cross-compiling. 13 November 2014, 13:58:16 UTC
7361e81 Help: Document COMPONENT option of install(SCRIPT/CODE) (#14956) 13 November 2014, 13:41:56 UTC
ded3040 Features: Don't record for AppleClang Features are currently recorded accidentally for all versions of AppleClang > 3.4 (I have no idea how that relates to upstream Clang). Presumably that version has the features which are accidentally recorded, but in the future features will be recorded initially for only AppleClang >= 5.1, which would appear as a feature regression. Commit v3.1.0-rc1~635^2~11 (Don't load Clang-CXX from AppleClang-CXX., 2013-11-11) ajusted the logic for the CXX language. Make a similar change for the C language. 12 November 2014, 22:20:36 UTC
433c6d4 CMake 3.1.0-rc2 12 November 2014, 14:41:58 UTC
5d1fe90 Merge branch 'emacs-mode-underscore-in-symbol' into release 12 November 2014, 14:30:15 UTC
cb80e51 Help: Add 3.1 release note Emacs mode update 12 November 2014, 14:29:25 UTC
5bed08a Merge branch 'kwsys-SystemInformation-AIX-_SC_AIX_REALMEM' into release 12 November 2014, 14:17:13 UTC
0011abe Merge branch 'doc-CMAKE_INSTALL_PREFIX-link-GNUInstallDirs' into release 12 November 2014, 14:17:07 UTC
b3bbb65 Merge branch 'doc-index-xrefs' into release 12 November 2014, 14:17:01 UTC
7ca9a45 Utilities/Sphinx: Add index entries for cross-references Add a document transform to insert index and target nodes just before any CMake domain cross-reference node. This will make references to CMake domain objects appear in the index. Also add a comment explaining why it cannot be done in a result_nodes method of the CMakeXRefRole. 12 November 2014, 14:10:52 UTC
30f14ae cmake-mode.el: syntax of '_' should be treated as symbol Word commands, such as foward-word(M-f), backward-kill-word(M-backspace), don't work well like other major-modes if syntax of '_' is treated as "word". Tested-by: Guillaume Papin <guillaume.papin@parrot.com> 12 November 2014, 13:40:14 UTC
00d4cdc Help: Link to GNUInstallDirs from CMAKE_INSTALL_PREFIX (#15246) Add a note to the CMAKE_INSTALL_PREFIX documentation that refers readers to the GNUInstallDirs module to make the latter easier to discover. 12 November 2014, 13:32:01 UTC
ec893d9 Merge branch 'fix_link-line-dedup_regression' into release 11 November 2014, 17:46:27 UTC
a234bca KWSys SystemInformation: Check for _SC_AIX_REALMEM before using it Add a check for supported flag when querying for system memory on AIX 5.1. 11 November 2014, 14:16:46 UTC
4db3109 Fix link line order when shared libraries are de-duplicated Since commit v3.1.0-rc1~227^2~1 (De-duplicate shared library targets in generated link lines, 2014-07-30) we de-duplicate shared library targets on the link line. However, some toolchains will fail linking if an executable is linking to a shared library that is not used directly and a static library that depends on the shared one. The linker may not keep the reference to the shared library the first time and then the symbols needed by the static library may not be found. Fix this by reversing the direction of the for loop that removes the duplicate shared libraries, in order to ensure that the last occurrence of the library is left instead of the first one. Extend Tests/Dependency with a case covering this behavior. Create an executable that links to a shared library and a static library but only needs the shared library as a dependency of the static library. Co-Author: Brad King <brad.king@kitware.com> 10 November 2014, 19:46:22 UTC
41b4fb9 Merge branch 'ExternalProject-check-hash-before-download' into release 10 November 2014, 16:29:21 UTC
ee7405a ExternalProject: Restore logic to not download already-existing file The change in commit v3.1.0-rc1~85^2 (ExternalProject: Fix download retry logic, 2014-09-13) dropped the file(DOWNLOAD) EXPECTED_HASH argument. This prevents file(DOWNLOAD) from skipping the download if the output file already exists with the proper hash. Restore this check with explicit code in the download script. Reported-by: Ruslan Baratov <ruslan_baratov@yahoo.com> 10 November 2014, 16:26:52 UTC
e937173 Merge branch 'fix-gcc-hppa' into release 10 November 2014, 15:44:45 UTC
back to top