summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'minor-cleanups'Brad King2014-01-0652-268/+433
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. ...
| * cmTarget: Remove support for <CONFIG>_LOCATION property.Stephen Kelly2014-01-041-19/+0
| | | | | | | | | | It is not documented, is very old, is compatibility code, is non-uniform and is not needed.
| * cmTarget: Test impliedByUse number-compatible properties.Stephen Kelly2014-01-044-0/+15
| | | | | | | | | | | | | | | | | | 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.
| * cmTarget: Don't repeat property origin debug information.Stephen Kelly2014-01-043-8/+15
| |
| * cmTarget: Fix debug report for interface-set compatibility types.Stephen Kelly2014-01-043-32/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * cmTarget: Fix reporting interface-set properties which are FALSE.Stephen Kelly2014-01-043-2/+11
| |
| * Qt Tests: Remove commented and unneeded line.Stephen Kelly2014-01-041-1/+0
| |
| * cmTarget: Fix the property compatibility error messageStephen Kelly2014-01-047-4/+23
| | | | | | | | | | | | | | Don't refer to 'both', but a 'mixture'. List all compatible interface property types possible. Add another test for a mixture of three compatibilities.
| * Help: Reformat Qt autogenerator documentation.Stephen Kelly2014-01-0418-81/+81
| |
| * Help: Mark some code blocks as containing cmake code.Stephen Kelly2014-01-043-8/+24
| |
| * GenerateExportHeader: Reformat docs.Stephen Kelly2014-01-041-64/+51
| |
| * cmTarget: Don't update IMPORTED target compilation propertiesStephen Kelly2014-01-045-24/+47
| | | | | | | | | | | | 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().
| * Run the add_compile_options command unit test.Stephen Kelly2014-01-041-0/+1
| | | | | | | | | | This has not been executed since it was added in commit a984f325 (Introduce add_compile_options command., 2013-06-04).
| * get_property: Fix testing ALIASED_TARGET target property (#14670)Stephen Kelly2014-01-042-1/+23
| | | | | | | | | | In the case where the argument is not an ALIAS, the variable should be set to a -NOTFOUND content.
| * install: Ensure that install(TARGETS) works with no DESTINATIONStephen Kelly2014-01-041-1/+4
| | | | | | | | | | INTERFACE_LIBRARY targets have no corresponding files, and so require no DESTINATION to install anything to.
| * export: Only generate and install configuration files if needed.Stephen Kelly2014-01-041-6/+15
| | | | | | | | | | | | | | | | | | | | 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.
| * Help: Workaround pygments reporting an error for genexes.Stephen Kelly2014-01-041-0/+10
| | | | | | | | | | Without the workaround, CMake code snippets are not highlighted at all because pygments can not lex the generator expressions.
| * Help: Remove workaround for pre-CMake 2.8.4 code.Stephen Kelly2014-01-041-2/+1
| | | | | | | | | | | | 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.
| * cmTarget: Rename container holding link implementation objects.Stephen Kelly2014-01-041-14/+14
| | | | | | | | | | Don't erroneously name it for the link implementation. That's something different.
| * install: Rename variable referencing cmake version.Stephen Kelly2014-01-041-3/+3
| | | | | | | | | | | | | | | | 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.
| * Style: Use this-> when invoking member function.Stephen Kelly2014-01-041-1/+1
| |
| * add_dependencies: Disallow use with INTERFACE_LIBRARY.Stephen Kelly2014-01-045-0/+21
| |
* | Merge topic 'cmake-buildsystem-manual'Brad King2014-01-062-0/+795
|\ \ | | | | | | | | | | | | 0d9cdab Help: Add cmake-buildsystem.7 manual
| * | Help: Add cmake-buildsystem.7 manualStephen Kelly2014-01-062-0/+795
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge topic 'fix-text-typos'Brad King2014-01-064-5/+5
|\ \ \ | | | | | | | | | | | | | | | | 9e41eb6 Fix wording of "the the" typos throughout text
| * | | Fix wording of "the the" typos throughout textRuslan Baratov2014-01-034-5/+5
| | | |
* | | | Merge topic 'update-kwsys'Brad King2014-01-061-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 196cee6 Merge branch 'upstream-kwsys' into update-kwsys 4709c7a KWSys 2014-01-02 (606d7d6f)
| * \ \ \ Merge branch 'upstream-kwsys' into update-kwsysBrad King2014-01-031-0/+1
| |\ \ \ \ | | |_|_|/ | |/| | |
| | * | | KWSys 2014-01-02 (606d7d6f)KWSys Robot2014-01-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | Merge topic 'EclipseUse64bitMachOParser'Brad King2014-01-062-1/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | e6b0f45 Eclipse: use MachO64 parser starting with Helios (#14380)
| * | | | | Eclipse: use MachO64 parser starting with Helios (#14380)Alex Neundorf2014-01-012-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | CMake Nightly Date StampKitware Robot2014-01-061-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2014-01-051-1/+1
| |_|_|_|/ |/| | | |
* | | | | CMake Nightly Date StampKitware Robot2014-01-041-1/+1
| |/ / / |/| | |
* | | | CMake Nightly Date StampKitware Robot2014-01-031-1/+1
| | | |
* | | | Merge topic 'export-EXPORT-subcommand'Brad King2014-01-0218-88/+237
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
| * | | | Help: Document export(EXPORT) in the cmake-packages manual.Stephen Kelly2013-12-241-2/+20
| | | | |
| * | | | Don't copy find_dependency in configure_package_config_file.Stephen Kelly2013-12-242-11/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is not really any need to. Downstreams can either rely on it being provided by CMake, or copy and distribute it. Change the documented include for the find_dependency macro.
| * | | | Help: cmake-packages: Add missing slash.Stephen Kelly2013-12-241-1/+1
| | | | |
| * | | | export: Implement EXPORT subcommand (#9822)Stephen Kelly2013-12-2416-74/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Teach the export command to handle export sets defined by invocations of install(TARGETS ... EXPORT foo). This makes maintenance of targets exported to both the build tree and install tree trivial.
* | | | | Merge topic 'cmake-mode-updates'Brad King2014-01-021-5/+11
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 33fa10f cmake-mode.el: Add autoload cookies d03a0fb cmake-mode.el: Move header line to the top of file
| * | | | | cmake-mode.el: Add autoload cookiesYasuyuki Oka2014-01-021-4/+9
| | | | | |
| * | | | | cmake-mode.el: Move header line to the top of fileYasuyuki Oka2014-01-021-1/+2
| | | | | |
* | | | | | Merge topic 'KateProjectImprovements'Brad King2014-01-021-8/+19
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | kate: put full path to cmake into commentAlex Neundorf2013-12-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Alex
| * | | | | | kate: support also the build plugin in kate <= 4.12Alex Neundorf2013-12-291-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | kate: the prev_target is not used by kateAlex Neundorf2013-12-291-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...this was a leftover from experimenting Alex
* | | | | | | Merge topic 'wix-rtf-encoding'Brad King2014-01-025-1/+110
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 950d76e CPackWiX: allow and convert UTF-8 sequences in RTF writer
| * | | | | | | CPackWiX: allow and convert UTF-8 sequences in RTF writerNils Gladitz2013-12-265-1/+110
| | | | | | | |
* | | | | | | | Merge topic 'wix-read-only'Brad King2014-01-021-0/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 44a7543 CPackWiX: transfer file read only flag during installation