From ba9b9d79fb1a753c564be44e17e2d3b979f8108c Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 2 Apr 2015 16:16:14 -0400 Subject: [PATCH] Help: Fix syntax in non-relocatable usage requirements example The example in cmake-packages(7) is meant to be incorrect for use of absolute paths, not for its syntax. --- Help/manual/cmake-packages.7.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Help/manual/cmake-packages.7.rst b/Help/manual/cmake-packages.7.rst index 3367ba472..b477cab59 100644 --- a/Help/manual/cmake-packages.7.rst +++ b/Help/manual/cmake-packages.7.rst @@ -385,11 +385,11 @@ generate config file packages: .. code-block:: cmake target_link_libraries(ClimbingStats INTERFACE - ${Boost_LIBRARIES};${OtherDep_LIBRARIES}> - ) + ${Boost_LIBRARIES} ${OtherDep_LIBRARIES} + ) target_include_directories(ClimbingStats INTERFACE - $ - ) + "$" + ) Dependencies must provide their own :ref:`IMPORTED targets ` which have their own :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` and