https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
354802a Fix storyboard view in Xcode. If storyboard file has attribute 'explicitFileType' it is displayed incorrectly (as raw xml). Works fine with 'lastKnownFileType'. 07 January 2014, 18:52:42 UTC
855e875 Merge topic 'minor-cleanups' 3917d86 Genex: Add a nullary form for CONFIG 5169130 Help: Document the target properties exported to IMPORTED targets. ee21f1c CompatibleInterface: Test debugging of not-set property. 80e9fe9 Help: Note that language-specific 'built-ins' are set by the project command. 0b5bf8a Help: Mention CMAKE_DISABLE_FIND_PACKAGE_<PackageName> in package docs. 28c865b Tests: simplify Qt4 target usage 6cfe6b8 Help: Fix typo: 'target' -> 'target property' b7deca4 Test: Remove obsolete commented code. 9c9f69f Genex: Make EQUAL support upper case binary literals 6eb3218 Genex: Fix case of methods in the dag checker. 646c6ec Genex: Use a preprocessor loop to implement transitive DAG check. 711fb38 Genex: List transitive properties and methods as a table, not two lists. 802a28f Add cmHasLiteralSuffix API. 07 January 2014, 14:39:22 UTC
f74b607 Merge topic 'doc-cpp-allowed' 58c174e Help: Document the C++ subset permitted for CMake code. 07 January 2014, 14:39:20 UTC
3a024ce Merge topic 'unicode-fstream' 5730710 Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream. 07 January 2014, 14:39:17 UTC
91dcc9b Merge topic 'unicode-main' a1e542f Use Encoding::CommandLineArguments for main() functions. 07 January 2014, 14:39:15 UTC
3917d86 Genex: Add a nullary form for CONFIG This is consistent with other similar expressions such as PLATFORM_ID, and makes the CONFIGURATION expression obsolete. Fix an off-by-one error in GeneratorExpressionContent::EvaluateParameters exposed by a unit test. Remove the test for 'bad' nullary use of $<CONFIG>. Add a unit test to verify that $<CONFIG> and $<CONFIGURATION> have the same value. 07 January 2014, 14:38:01 UTC
5169130 Help: Document the target properties exported to IMPORTED targets. 07 January 2014, 14:38:01 UTC
ee21f1c CompatibleInterface: Test debugging of not-set property. 07 January 2014, 14:38:01 UTC
80e9fe9 Help: Note that language-specific 'built-ins' are set by the project command. 07 January 2014, 14:38:01 UTC
0b5bf8a Help: Mention CMAKE_DISABLE_FIND_PACKAGE_<PackageName> in package docs. 07 January 2014, 14:38:00 UTC
28c865b Tests: simplify Qt4 target usage This content was copied from another test where both the Core and Gui targets are used. 07 January 2014, 14:38:00 UTC
6cfe6b8 Help: Fix typo: 'target' -> 'target property' 07 January 2014, 14:38:00 UTC
b7deca4 Test: Remove obsolete commented code. This should not have survived in commit a247911a (Tests: Don't read the LOCATION property from build targets., 2013-11-18). 07 January 2014, 14:38:00 UTC
5730710 Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream. Also use SystemTools::Fopen() instead of fopen(). This is to eventually support utf-8 filenames. 07 January 2014, 14:27:44 UTC
69ccc95 CMake Nightly Date Stamp 07 January 2014, 05:01:08 UTC
58c174e Help: Document the C++ subset permitted for CMake code. This may be incomplete, but further limitations can be added when needed. 06 January 2014, 18:15:31 UTC
9c9f69f Genex: Make EQUAL support upper case binary literals As C++11, python, D and java do. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3472.pdf Add test for uppercase hex literals. 06 January 2014, 17:46:45 UTC
6eb3218 Genex: Fix case of methods in the dag checker. 06 January 2014, 17:46:45 UTC
646c6ec Genex: Use a preprocessor loop to implement transitive DAG check. The other infrastructure for transitive property handling is already using a preprocessor loop. Implement special backward-compatibility handling of COMPILE_DEFINITIONS_<CONFIG> using a template switch for the extra check. 06 January 2014, 17:46:45 UTC
711fb38 Genex: List transitive properties and methods as a table, not two lists. Introduce a new set of macros to select the column. 06 January 2014, 17:46:44 UTC
802a28f Add cmHasLiteralSuffix API. 06 January 2014, 17:46:44 UTC
dc08199 Merge topic 'minor-cleanups' 84fac67 Don't allow include() of export(EXPORT) file at configure time. faedd2b cmTarget: Fix system include annotation propagation. 9eb06d0 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. 10d65d5 cmTarget: Move a variable initialization closer to where it is used. 0f3e8e9 Undefine local preprocessor loop variables. 9ba47ee Genex: Reform error-checking for nullary/unary expressions. fa651c7 cmTarget: Remove some of the INTERFACE_LIBRARY whitelisted properties. 61d138a cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 3429541 export: Rename some variables to reflect content type. 7461d67 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. 7fc6e3d cmTarget: Remove dead code. 2af966d Genex: Add EQUAL expression. 2d66380 cmTarget: Use strtol for numeric parsing. 06 January 2014, 16:43:12 UTC
84fac67 Don't allow include() of export(EXPORT) file at configure time. As a new feature it does not need to participate in CMP0024. Store cmExportBuildFileGenerator instances which correspond to the export(EXPORT) signature in a second map which does not own the pointers. This avoids the need to add cmExportBuildFileGenerator and dependencies to the bootstrap system. 06 January 2014, 16:25:11 UTC
faedd2b cmTarget: Fix system include annotation propagation. Direct users of IMPORTED targets treat INTERFACE_INCLUDE_DIRECTORIES as SYSTEM, after commit a63fcbcb (Always consider includes from IMPORTED targets to be SYSTEM., 2013-08-29). It was intended that transitive use of an IMPORTED target would have the same behavior, but that did not work. The implementation processed only direct dependencies in cmTarget::FinalizeSystemIncludeDirectories. Implement transitive evaluation of dependencies by traversing the link interface of each target in the link implementation. 06 January 2014, 16:25:10 UTC
9eb06d0 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. Document the valid signatures. Add a test for the IMPORTED GLOBAL signature. 06 January 2014, 16:25:10 UTC
10d65d5 cmTarget: Move a variable initialization closer to where it is used. This is more readable and easier to reason about. 06 January 2014, 16:25:10 UTC
0f3e8e9 Undefine local preprocessor loop variables. Most occurances of this pattern already contain the undef, so add it to the rest too. 06 January 2014, 16:25:10 UTC
9ba47ee Genex: Reform error-checking for nullary/unary expressions. The error messages were incorrect (reporting that the expression requires one or two parameters), and repeated. Remove the now-unused ZeroOrMoreParameters enum value. 06 January 2014, 16:25:10 UTC
fa651c7 cmTarget: Remove some of the INTERFACE_LIBRARY whitelisted properties. There is no need to allow EXCLUDE_* properties, because an INTERFACE_LIBRARY has no direct build output. IMPORTED_LINK_INTERFACE_LANGUAGES are relevant only to static libraries. VERSION is relevant only to the filename of direct build outputs, which INTERFACE_LIBRARY does not have. 06 January 2014, 16:25:10 UTC
61d138a cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 06 January 2014, 16:25:10 UTC
3429541 export: Rename some variables to reflect content type. This method is used with a list of languages. 06 January 2014, 16:25:10 UTC
7461d67 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. Make the CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE variable affect INTERFACE_LIBRARY targets. 06 January 2014, 16:25:10 UTC
7fc6e3d cmTarget: Remove dead code. Whitelisting of properties already ensures that the LOCATION property will not be read from an INTERFACE_LIBRARY. 06 January 2014, 16:25:09 UTC
2af966d Genex: Add EQUAL expression. Support decimal, hex, octal and binary literals. 06 January 2014, 16:25:09 UTC
2d66380 cmTarget: Use strtol for numeric parsing. On Windows apparently sscanf can not handle hex numbers. Test that numeric comparison works with hex numbers. 06 January 2014, 16:25:09 UTC
b225dbb Merge topic 'minor-cleanups' a55c70d cmTarget: Remove support for <CONFIG>_LOCATION property. c9f9b3c cmTarget: Test impliedByUse number-compatible properties. fbe1fa7 cmTarget: Don't repeat property origin debug information. 01c545c cmTarget: Fix debug report for interface-set compatibility types. c67e1a6 cmTarget: Fix reporting interface-set properties which are FALSE. 07b0f54 Qt Tests: Remove commented and unneeded line. 79db8ef cmTarget: Fix the property compatibility error message 43340a9 Help: Reformat Qt autogenerator documentation. d98ea6c Help: Mark some code blocks as containing cmake code. ea78935 GenerateExportHeader: Reformat docs. 272a20f cmTarget: Don't update IMPORTED target compilation properties 03d842a Run the add_compile_options command unit test. cd3d0b6 get_property: Fix testing ALIASED_TARGET target property (#14670) 6a62228 install: Ensure that install(TARGETS) works with no DESTINATION af3d3b8 export: Only generate and install configuration files if needed. 0de81bb Help: Workaround pygments reporting an error for genexes. ... 06 January 2014, 16:15:34 UTC
1377542 Merge topic 'cmake-buildsystem-manual' 0d9cdab Help: Add cmake-buildsystem.7 manual 06 January 2014, 15:36:05 UTC
b8786da Merge topic 'fix-text-typos' 9e41eb6 Fix wording of "the the" typos throughout text 06 January 2014, 15:36:03 UTC
5c4448b Merge topic 'update-kwsys' 196cee6 Merge branch 'upstream-kwsys' into update-kwsys 4709c7a KWSys 2014-01-02 (606d7d6f) 06 January 2014, 15:36:01 UTC
185c95c Merge topic 'EclipseUse64bitMachOParser' e6b0f45 Eclipse: use MachO64 parser starting with Helios (#14380) 06 January 2014, 15:35:59 UTC
0d9cdab Help: Add cmake-buildsystem.7 manual Describe how to define a buildsystem of binary targets, how to express dependencies between them, how to add build specifications, how to specify usage requirements, transitive and compatible propagation and the various pseudo targets. 06 January 2014, 15:25:24 UTC
ff6f80b CMake Nightly Date Stamp 06 January 2014, 05:01:04 UTC
d5f47b8 CMake Nightly Date Stamp 05 January 2014, 05:01:12 UTC
a1e542f Use Encoding::CommandLineArguments for main() functions. 04 January 2014, 17:43:12 UTC
a55c70d cmTarget: Remove support for <CONFIG>_LOCATION property. It is not documented, is very old, is compatibility code, is non-uniform and is not needed. 04 January 2014, 10:28:58 UTC
c9f9b3c cmTarget: Test impliedByUse number-compatible properties. Test that it is an error to read a number-compatible property to determine the link implementation. An alternative would be to consider the value to be "0", however, that is too arbitrary given the use-cases of this feature. Values from this feature may be used in setting a define, where "0" may have special or invalid meaning and should be explicit. 04 January 2014, 10:28:58 UTC
fbe1fa7 cmTarget: Don't repeat property origin debug information. 04 January 2014, 10:28:58 UTC
01c545c cmTarget: Fix debug report for interface-set compatibility types. If the dependent target sets the property to boolean false, ensure that that appears in the debug report. Previously, the report output contained whether the property was consistent among dependencies, displaying 'TRUE', instead of the content of the property, which may be 'FALSE'. Return a std::pair from the consistentProperty method. This makes it possible to make the return value for string types easier to reason about. The return value of consistentProperty was previously set to an empty static string to emulate a 'true' value for the caller in commit 816b4a8a (cmTarget: Make consistentProperty return consistent content., 2013-10-22). The pair makes the consistency result properly typed. 04 January 2014, 10:28:58 UTC
c67e1a6 cmTarget: Fix reporting interface-set properties which are FALSE. 04 January 2014, 10:28:58 UTC
07b0f54 Qt Tests: Remove commented and unneeded line. 04 January 2014, 10:28:57 UTC
79db8ef cmTarget: Fix the property compatibility error message Don't refer to 'both', but a 'mixture'. List all compatible interface property types possible. Add another test for a mixture of three compatibilities. 04 January 2014, 10:28:57 UTC
43340a9 Help: Reformat Qt autogenerator documentation. 04 January 2014, 10:28:57 UTC
d98ea6c Help: Mark some code blocks as containing cmake code. 04 January 2014, 10:28:57 UTC
ea78935 GenerateExportHeader: Reformat docs. 04 January 2014, 10:28:57 UTC
272a20f cmTarget: Don't update IMPORTED target compilation properties The include_directories() and add_compile_options() commands should not append to the corresponding target property for IMPORTED targets. This is already the case for add_definitions(). 04 January 2014, 10:28:57 UTC
03d842a Run the add_compile_options command unit test. This has not been executed since it was added in commit a984f325 (Introduce add_compile_options command., 2013-06-04). 04 January 2014, 10:28:57 UTC
cd3d0b6 get_property: Fix testing ALIASED_TARGET target property (#14670) In the case where the argument is not an ALIAS, the variable should be set to a -NOTFOUND content. 04 January 2014, 10:28:57 UTC
6a62228 install: Ensure that install(TARGETS) works with no DESTINATION INTERFACE_LIBRARY targets have no corresponding files, and so require no DESTINATION to install anything to. 04 January 2014, 10:28:57 UTC
af3d3b8 export: Only generate and install configuration files if needed. The modern way to create configuration dependent content is using generator expressions in the main export file. The only non-deprecated property still generated in the configuration-specific files are IMPORTED_LOCATION_<CONFIG> INTERFACE_LIBRARY targets have no location, and no need for those files. 04 January 2014, 10:28:56 UTC
0de81bb Help: Workaround pygments reporting an error for genexes. Without the workaround, CMake code snippets are not highlighted at all because pygments can not lex the generator expressions. 04 January 2014, 10:28:56 UTC
0cf550b Help: Remove workaround for pre-CMake 2.8.4 code. The requirement was updated in commit 920ffbf5 (Require CMake 2.8.4 or greater to build CMake, 2013-10-11) and similar snippets were removed. 04 January 2014, 10:28:56 UTC
5c0a06a cmTarget: Rename container holding link implementation objects. Don't erroneously name it for the link implementation. That's something different. 04 January 2014, 10:28:56 UTC
a0cacb5 install: Rename variable referencing cmake version. The next version is 3.0.0, not 2.8.13. The version generated in the export file should be updated in the release branch in both cmExportInstallFileGenerator and cmExportBuildFileGenerator. 04 January 2014, 10:28:56 UTC
5b6e9be Style: Use this-> when invoking member function. 04 January 2014, 10:28:56 UTC
6db7e6d add_dependencies: Disallow use with INTERFACE_LIBRARY. 04 January 2014, 10:28:56 UTC
7fb2b80 CMake Nightly Date Stamp 04 January 2014, 05:01:07 UTC
9e41eb6 Fix wording of "the the" typos throughout text 03 January 2014, 16:35:32 UTC
196cee6 Merge branch 'upstream-kwsys' into update-kwsys 03 January 2014, 15:21:07 UTC
4709c7a KWSys 2014-01-02 (606d7d6f) Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ 606d7d6f | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' e81f2a9e..606d7d6f Muli Baron (1): 606d7d6f Terminal: Add putty-256color as a VT100 color-capable terminal Change-Id: Ibd80e7b209c29947c384023d3ac1ce862648de01 03 January 2014, 15:20:56 UTC
0bb3ca2 CMake Nightly Date Stamp 03 January 2014, 05:01:13 UTC
6cff2af Merge topic 'export-EXPORT-subcommand' 98b9f52 Help: Document export(EXPORT) in the cmake-packages manual. a1d2bda Don't copy find_dependency in configure_package_config_file. f4f6529 Help: cmake-packages: Add missing slash. cbe7e8f export: Implement EXPORT subcommand (#9822) 02 January 2014, 19:44:08 UTC
85704c0 Merge topic 'cmake-mode-updates' 33fa10f cmake-mode.el: Add autoload cookies d03a0fb cmake-mode.el: Move header line to the top of file 02 January 2014, 19:24:52 UTC
5249948 Merge topic 'KateProjectImprovements' 37104d9 kate: put full path to cmake into comment 424d5dc kate: support also the build plugin in kate <= 4.12 8bd6cf0 kate: the prev_target is not used by kate 02 January 2014, 19:24:39 UTC
81311c6 Merge topic 'wix-rtf-encoding' 950d76e CPackWiX: allow and convert UTF-8 sequences in RTF writer 02 January 2014, 19:24:25 UTC
2da175c Merge topic 'wix-read-only' 44a7543 CPackWiX: transfer file read only flag during installation 02 January 2014, 19:24:13 UTC
a294ff0 Merge topic 'suppress-LNK4089-SHELL32' 0fd172c CTestCustom: Suppress LNK4089 warning about SHELL32 02 January 2014, 19:24:03 UTC
7a63192 Merge topic 'fix-compile-OBJECT_DIR' 03f3b4e Replace <OBJECT_DIR> rule placeholder consistently (#14667) 02 January 2014, 19:23:52 UTC
fef56ed Merge topic 'update-kwsys' 2f7c169 Merge branch 'upstream-kwsys' into update-kwsys d4efa5f KWSys 2013-12-21 (e81f2a9e) 02 January 2014, 19:23:35 UTC
f6c85e7 Merge topic 'fix-ctest-regressions' 7f0d4af CTest: fix regressions introduced by the ctest-fix-run-serial topic 02 January 2014, 19:23:22 UTC
0d63bdd Merge topic 'rpath-default' d25ad48 OS X: Add CMP0042 to enable MACOSX_RPATH by default 02 January 2014, 19:23:09 UTC
c0ea060 Merge topic 'copyright-year' f2ec464 Copyright.txt: Update year range to end in 2014 02 January 2014, 19:22:56 UTC
f2ec464 Copyright.txt: Update year range to end in 2014 02 January 2014, 19:11:55 UTC
0fd172c CTestCustom: Suppress LNK4089 warning about SHELL32 Add a warning suppression regex to match: LINK : warning LNK4089: all references to 'SHELL32.DLL' discarded by /OPT:REF 02 January 2014, 19:08:05 UTC
03f3b4e Replace <OBJECT_DIR> rule placeholder consistently (#14667) The <OBJECT_DIR> placeholder is supposed to be the base intermediate files directory for the current target. This is how it gets replaced during link line generation. However, during compile line generation we replace it with the directory containing the current object file which may be a subdirectory. Fix replacement of <OBJECT_DIR> in the generated compile lines to be the base intermediate files directory. This was expoxed by commit 42ba1b08 (VS: Separate compiler and linker PDB files, 2013-04-05) when we added a "/Fd<OBJECT_DIR>/" flag to the MSVC compile line in order to match the VS IDE default compiler program database location in the intermediate files directory. For source files in a subdirectory relative to the current target this caused the wrong location to be used for the compiler program database. This becomes particularly important when using precompiled headers. While at it, use the cmTarget::GetSupportDirectory method to compute the intermediate files directory for the current target instead of repeating the logic in a few places. 02 January 2014, 18:45:41 UTC
d25ad48 OS X: Add CMP0042 to enable MACOSX_RPATH by default Also adding documentation for CMAKE_MACOSX_RPATH, and improving documentation for MACOSX_RPATH. 02 January 2014, 18:41:49 UTC
33fa10f cmake-mode.el: Add autoload cookies 02 January 2014, 18:15:58 UTC
d03a0fb cmake-mode.el: Move header line to the top of file 02 January 2014, 18:14:15 UTC
c0798b5 CMake Nightly Date Stamp 02 January 2014, 05:01:08 UTC
e6b0f45 Eclipse: use MachO64 parser starting with Helios (#14380) With this patch, cmake now puts the MachO64 bit binary file parser into the config file if the detected Eclipse is at least Helios (7.0), otherwise with the old parser executables will not be recognized by Eclipse. Alex 01 January 2014, 16:52:57 UTC
9e9debe CMake Nightly Date Stamp 01 January 2014, 05:01:13 UTC
403632c CMake Nightly Date Stamp 31 December 2013, 05:01:08 UTC
1b7546c CMake Nightly Date Stamp 30 December 2013, 05:01:27 UTC
37104d9 kate: put full path to cmake into comment Alex 29 December 2013, 20:17:32 UTC
424d5dc kate: support also the build plugin in kate <= 4.12 With this patch, simply also the information used by the build plugin in kate <= 4.12 is put into the generated json file. The new build plugin (coming in 4.13) simply ignores this (and vice versa). Alex 29 December 2013, 20:17:25 UTC
8bd6cf0 kate: the prev_target is not used by kate ...this was a leftover from experimenting Alex 29 December 2013, 05:40:14 UTC
8b27589 CMake Nightly Date Stamp 29 December 2013, 05:01:05 UTC
a846670 CMake Nightly Date Stamp 28 December 2013, 05:01:11 UTC
9f7c2bd CMake Nightly Date Stamp 27 December 2013, 05:01:09 UTC
950d76e CPackWiX: allow and convert UTF-8 sequences in RTF writer 26 December 2013, 14:23:54 UTC
cba6c45 CMake Nightly Date Stamp 26 December 2013, 05:01:07 UTC
back to top