https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
08ffbc1 Fix misprints: `the the` 02 January 2014, 17:52:18 UTC
a2fd265 Merge topic 'minor-cleanups' into next 626dc25 cmTarget: Fix system include annotation propagation. 02 January 2014, 08:15:17 UTC
626dc25 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. 02 January 2014, 08:14:23 UTC
230e011 Merge topic 'minor-cleanups' into next b9662db Replace algorithm with loop. 02 January 2014, 08:14:00 UTC
b9662db Replace algorithm with loop. 02 January 2014, 08:12:58 UTC
5f8900c Merge topic 'EclipseUse64bitMachOParser' into next e6b0f45 Eclipse: use MachO64 parser starting with Helios (#14380) 9e9debe CMake Nightly Date Stamp 403632c CMake Nightly Date Stamp 1b7546c CMake Nightly Date Stamp 01 January 2014, 17:43:16 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
967591d Merge topic 'minor-cleanups' into next b98ef8d cmTarget: Fix system include annotation propagation. 01 January 2014, 15:10:13 UTC
b98ef8d 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. 01 January 2014, 15:01:36 UTC
9e9debe CMake Nightly Date Stamp 01 January 2014, 05:01:13 UTC
e57c1cb Merge topic 'minor-cleanups' into next 5f4bfc3 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. 6888a4f cmTarget: Move a variable initialization closer to where it is used. 00a6791 Undefine local preprocessor loop variables. 1ff3fb7 Genex: Reform error-checking for nullary/unary expressions. 87c9378 cmTarget: Remove some of the INTERFACE_LIBRARY whitelisted properties. 457beaa cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 4fca3c8 export: Rename some variables to reflect content type. b269168 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. ecd7162 cmTarget: Remove dead code. 87a8fad Genex: Add EQUAL expression. d5274b0 cmTarget: Use strtol for numeric parsing. 4097832 Add cmHasLiteralSuffix API. 396191d cmTarget: Remove support for <CONFIG>_LOCATION property. f77c1be cmTarget: Test impliedByUse number-compatible properties. c5728f8 cmTarget: Don't repeat property origin debug information. 0b45686 cmTarget: Fix debug report for interface-set compatibility types. ... 31 December 2013, 15:37:23 UTC
5f4bfc3 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. Document the valid signatures. Add a test for the IMPORTED GLOBAL signature. 31 December 2013, 15:36:20 UTC
6888a4f cmTarget: Move a variable initialization closer to where it is used. This is more readable and easier to reason about. 31 December 2013, 15:35:02 UTC
00a6791 Undefine local preprocessor loop variables. Most occurances of this pattern already contain the undef, so add it to the rest too. 31 December 2013, 15:35:02 UTC
1ff3fb7 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. 31 December 2013, 15:35:02 UTC
87c9378 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. 31 December 2013, 15:35:02 UTC
457beaa cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 31 December 2013, 15:35:02 UTC
4fca3c8 export: Rename some variables to reflect content type. This method is used with a list of languages. 31 December 2013, 15:35:02 UTC
b269168 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. Make the CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE variable affect INTERFACE_LIBRARY targets. 31 December 2013, 15:35:01 UTC
ecd7162 cmTarget: Remove dead code. Whitelisting of properties already ensures that the LOCATION property will not be read from an INTERFACE_LIBRARY. 31 December 2013, 15:35:01 UTC
87a8fad Genex: Add EQUAL expression. Support decimal, hex, octal and binary literals. 31 December 2013, 15:35:01 UTC
d5274b0 cmTarget: Use strtol for numeric parsing. On Windows apparently sscanf can not handle hex numbers. Test that numeric comparison works with hex numbers. 31 December 2013, 15:35:01 UTC
4097832 Add cmHasLiteralSuffix API. 31 December 2013, 15:35:01 UTC
396191d cmTarget: Remove support for <CONFIG>_LOCATION property. It is not documented, is very old, is compatibility code, is non-uniform and is not needed. 31 December 2013, 15:35:01 UTC
f77c1be 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. 31 December 2013, 15:35:01 UTC
c5728f8 cmTarget: Don't repeat property origin debug information. 31 December 2013, 15:35:00 UTC
0b45686 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. 31 December 2013, 15:35:00 UTC
dc0152a cmTarget: Fix reporting interface-set properties which are FALSE. 31 December 2013, 15:35:00 UTC
6cf9b67 Qt Tests: Remove commented and unneeded line. 31 December 2013, 15:35:00 UTC
31c6ade 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. 31 December 2013, 15:35:00 UTC
3ba805a Help: Reformat Qt autogenerator documentation. 31 December 2013, 15:35:00 UTC
d6f53f0 Help: Mark some code blocks as containing cmake code. 31 December 2013, 15:35:00 UTC
d66776f GenerateExportHeader: Reformat docs. 31 December 2013, 15:34:59 UTC
f693472 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(). 31 December 2013, 15:34:59 UTC
e66a313 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). 31 December 2013, 15:34:59 UTC
06147a7 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. 31 December 2013, 15:34:59 UTC
4292586 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. 31 December 2013, 15:34:59 UTC
01dbcef 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. 31 December 2013, 15:34:59 UTC
deee525 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. 31 December 2013, 15:34:59 UTC
8b616e6 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. 31 December 2013, 15:34:58 UTC
81407e3 cmTarget: Rename container holding link implementation objects. Don't erroneously name it for the link implementation. That's something different. 31 December 2013, 15:34:58 UTC
99dcf7f 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. 31 December 2013, 15:34:58 UTC
24d94b7 Style: Use this-> when invoking member function. 31 December 2013, 15:34:58 UTC
973475e Merge topic 'minor-cleanups' into next b9b5754 Revert topic 31 December 2013, 15:33:49 UTC
8d34f85 add_dependencies: Disallow use with INTERFACE_LIBRARY. 31 December 2013, 15:32:17 UTC
b9b5754 Revert topic 31 December 2013, 15:20:40 UTC
b54ac24 Merge topic 'minor-cleanups' into next 466803d add_library: Disallow invalid signatures for INTERFACE_LIBRARY. b1ba3a6 cmTarget: Move a variable initialization closer to where it is used. fdd6135 Undefine local preprocessor loop variables. c8cb87a Genex: Reform error-checking for nullary/unary expressions. 3c2b927 cmTarget: Remove some of the INTERFACE_LIBRARY whitelisted properties. e08af84 cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 8a09d67 export: Rename some variables to reflect content type. d6947e9 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. 0b1af7c cmTarget: Remove dead code. c7a0cbe Genex: Add EQUAL expression. 256d4a9 cmTarget: Use strtol for numeric parsing. bf0acd6 Add cmHasLiteralSuffix API. aa2acb4 cmTarget: Remove support for <CONFIG>_LOCATION property. 4c1d098 cmTarget: Test impliedByUse number-compatible properties. 78fbe4c cmTarget: Don't repeat property origin debug information. fe06440 cmTarget: Fix debug report for interface-set compatibility types. ... 31 December 2013, 14:50:07 UTC
824106c Merge topic 'minor-cleanups' into next c76a330 Revert topic. 029d3d7 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. 4423014 cmTarget: Move a variable initialization closer to where it is used. dc3572f Undefine local preprocessor loop variables. 76c611c Genex: Reform error-checking for nullary/unary expressions. 83b1223 cmTarget: Remove some of the INTERFACE_LIBRARY whitelisted properties. 727e0ff cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 7f625e1 export: Rename some variables to reflect content type. 824273d cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. cf57ae8 cmTarget: Remove dead code. 0a7d327 Genex: Add EQUAL expression. 8961d27 cmTarget: Use strtol for numeric parsing. ebc1b2b Add cmHasLiteralSuffix API. 0280063 cmTarget: Remove support for <CONFIG>_LOCATION property. 28c78af cmTarget: Test impliedByUse number-compatible properties. 9b91691 cmTarget: Don't repeat property origin debug information. ... 31 December 2013, 14:49:04 UTC
c76a330 Revert topic. 31 December 2013, 14:47:25 UTC
466803d add_library: Disallow invalid signatures for INTERFACE_LIBRARY. Document the valid signatures. Add a test for the IMPORTED GLOBAL signature. 31 December 2013, 14:43:39 UTC
b1ba3a6 cmTarget: Move a variable initialization closer to where it is used. This is more readable and easier to reason about. 31 December 2013, 14:43:39 UTC
fdd6135 Undefine local preprocessor loop variables. Most occurances of this pattern already contain the undef, so add it to the rest too. 31 December 2013, 14:43:39 UTC
c8cb87a 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. 31 December 2013, 14:43:39 UTC
3c2b927 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. 31 December 2013, 14:43:38 UTC
e08af84 cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 31 December 2013, 14:43:38 UTC
8a09d67 export: Rename some variables to reflect content type. This method is used with a list of languages. 31 December 2013, 14:43:38 UTC
d6947e9 cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. Make the CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE variable affect INTERFACE_LIBRARY targets. 31 December 2013, 14:43:38 UTC
0b1af7c cmTarget: Remove dead code. Whitelisting of properties already ensures that the LOCATION property will not be read from an INTERFACE_LIBRARY. 31 December 2013, 14:43:38 UTC
c7a0cbe Genex: Add EQUAL expression. Support decimal, hex, octal and binary literals. 31 December 2013, 14:43:38 UTC
256d4a9 cmTarget: Use strtol for numeric parsing. On Windows apparently sscanf can not handle hex numbers. Test that numeric comparison works with hex numbers. 31 December 2013, 14:43:38 UTC
bf0acd6 Add cmHasLiteralSuffix API. 31 December 2013, 14:43:38 UTC
aa2acb4 cmTarget: Remove support for <CONFIG>_LOCATION property. It is not documented, is very old, is compatibility code, is non-uniform and is not needed. 31 December 2013, 14:43:38 UTC
4c1d098 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. 31 December 2013, 14:43:38 UTC
78fbe4c cmTarget: Don't repeat property origin debug information. 31 December 2013, 14:43:38 UTC
fe06440 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. 31 December 2013, 14:43:37 UTC
9ea0895 Revert some commits. 31 December 2013, 14:42:51 UTC
029d3d7 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. Document the valid signatures. Add a test for the IMPORTED GLOBAL signature. 31 December 2013, 14:32:41 UTC
4423014 cmTarget: Move a variable initialization closer to where it is used. This is more readable and easier to reason about. 31 December 2013, 14:32:41 UTC
dc3572f Undefine local preprocessor loop variables. Most occurances of this pattern already contain the undef, so add it to the rest too. 31 December 2013, 14:32:41 UTC
76c611c 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. 31 December 2013, 14:32:41 UTC
83b1223 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. 31 December 2013, 14:32:41 UTC
727e0ff cmTarget: INTERFACE_LIBRARY is always EXCLUDE_FROM_ALL. 31 December 2013, 14:32:40 UTC
7f625e1 export: Rename some variables to reflect content type. This method is used with a list of languages. 31 December 2013, 14:32:40 UTC
824273d cmTarget: Enable convenient include dir handling for INTERFACE_LIBRARY. Make the CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE variable affect INTERFACE_LIBRARY targets. 31 December 2013, 14:32:40 UTC
cf57ae8 cmTarget: Remove dead code. Whitelisting of properties already ensures that the LOCATION property will not be read from an INTERFACE_LIBRARY. 31 December 2013, 14:32:40 UTC
0a7d327 Genex: Add EQUAL expression. Support decimal, hex, octal and binary literals. 31 December 2013, 14:32:40 UTC
8961d27 cmTarget: Use strtol for numeric parsing. On Windows apparently sscanf can not handle hex numbers. Test that numeric comparison works with hex numbers. 31 December 2013, 14:32:39 UTC
ebc1b2b Add cmHasLiteralSuffix API. 31 December 2013, 14:32:39 UTC
0280063 cmTarget: Remove support for <CONFIG>_LOCATION property. It is not documented, is very old, is compatibility code, is non-uniform and is not needed. 31 December 2013, 14:32:39 UTC
28c78af 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. 31 December 2013, 14:32:39 UTC
9b91691 cmTarget: Don't repeat property origin debug information. 31 December 2013, 14:32:39 UTC
af9fc9d 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. 31 December 2013, 14:32:38 UTC
2939ca9 cmTarget: Fix reporting interface-set properties which are FALSE. 31 December 2013, 14:32:38 UTC
547426f Qt Tests: Remove commented and unneeded line. 31 December 2013, 14:32:38 UTC
89315ba 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. 31 December 2013, 14:32:38 UTC
54e1d79 Help: Reformat Qt autogenerator documentation. 31 December 2013, 14:32:38 UTC
fd8c7df Help: Mark some code blocks as containing cmake code. 31 December 2013, 14:32:38 UTC
0893edd GenerateExportHeader: Reformat docs. 31 December 2013, 14:32:38 UTC
b51a5a7 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(). 31 December 2013, 14:32:37 UTC
e737f68 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). 31 December 2013, 14:32:37 UTC
f0c15a3 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. 31 December 2013, 14:32:37 UTC
6bb8fb4 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. 31 December 2013, 14:32:37 UTC
f6d61ba 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. 31 December 2013, 14:32:37 UTC
287a576 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. 31 December 2013, 14:32:37 UTC
73dc0af 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. 31 December 2013, 14:32:37 UTC
c374827 cmTarget: Rename container holding link implementation objects. Don't erroneously name it for the link implementation. That's something different. 31 December 2013, 14:32:36 UTC
de461d6 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. 31 December 2013, 14:32:36 UTC
2fae583 Style: Use this-> when invoking member function. 31 December 2013, 14:32:36 UTC
5218156 Merge topic 'minor-cleanups' into next 27d4f36 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. 9732eab Revert "add_library: Error on source listing for INTERFACE_LIBRARY." 599e485 Add cmHasLiteralSuffix API. f11cdc2 cmTarget: Move a variable initialization closer to where it is used. 5997edc Undefine local preprocessor loop variables. bf7e9f3 Genex: Reform error-checking for nullary/unary expressions. 31 December 2013, 14:31:06 UTC
27d4f36 add_library: Disallow invalid signatures for INTERFACE_LIBRARY. Document the valid signatures. Add a test for the IMPORTED GLOBAL signature. 31 December 2013, 14:28:23 UTC
back to top