Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | target_link_libraries: Allow use with targets in other directories | Brad King | 2018-09-12 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | Previously the command did not allow naming targets on the LHS that were not created in the calling directory. Lift this restriction to enable more flexible use by projects. Targets named on the RHS will need to be looked up during generation in the scope of the call site rather than the scope of the LHS target. Introduce an internal syntax in `[INTERFACE_]LINK_LIBRARIES` properties to specify target names that need to be looked up in a directory other than that containing the target on which the property is set. Add minimal documentation of the syntax to help users that encounter it. Unfortunately CMake previously did allow such calls in the case that only `INTERFACE` libraries are specified, but those libraries would be looked up in the target's directory rather than the caller's. Add policy `CMP0079` to enable the new behavior with new lookup scope in a compatible way. Fixes: #17943 | ||||
* | Help: Document relation of properties to the rest of the buildsystem. | Stephen Kelly | 2014-02-06 | 1 | -8/+8 |
| | |||||
* | Help: Use ``inline-literals`` to mark generator expressions. | Stephen Kelly | 2014-02-06 | 1 | -1/+1 |
| | |||||
* | Help: Factor out cmake-generator-expressions manual page | Brad King | 2013-10-16 | 1 | -75/+3 |
| | | | | | | | | | Generator expressions are supported in many places and are a distinct concept worthy of their own manual page. The old builtin documentation was previously represented by preprocessor macros to generate it into each place that supports them. Factor out the duplicate content into a dedicated cmake-generator-expressions manual page and reference it from each original location. | ||||
* | Convert builtin help to reStructuredText source files | Kitware Robot | 2013-10-15 | 1 | -0/+89 |
Run the convert-help.bash script to convert documentation: ./convert-help.bash "/path/to/CMake-build/bin" Then remove it. |