From 17e9ce9dfd5263e3cc064664b4b9c1a4004146c5 Mon Sep 17 00:00:00 2001 From: Eugene Shalygin Date: Mon, 14 May 2018 11:01:44 +0200 Subject: [PATCH] Fix CMake targets names in the Config.cmake file. This fixes error introduced by 44b5777be3da192e66238531d3238169672ab096 where this entry was forgotten. --- LibtorrentRasterbarConfig.cmake.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LibtorrentRasterbarConfig.cmake.in b/LibtorrentRasterbarConfig.cmake.in index 2e359124f..5fb0da0c2 100644 --- a/LibtorrentRasterbarConfig.cmake.in +++ b/LibtorrentRasterbarConfig.cmake.in @@ -8,9 +8,9 @@ include(CMakeFindDependencyMacro) @_find_dependency_calls@ -include("${CMAKE_CURRENT_LIST_DIR}/libtorrent-rasterbar-targets.cmake") +include("${CMAKE_CURRENT_LIST_DIR}/LibtorrentRasterbarTargets.cmake") -get_target_property(@PROJECT_NAME@_INCLUDE_DIRS Libtorrent::torrent-rasterbar INTERFACE_INCLUDE_DIRECTORIES) -get_target_property(_lt_iface_link_libraries Libtorrent::torrent-rasterbar INTERFACE_LINK_LIBRARIES) -get_target_property(_lt_imported_location Libtorrent::torrent-rasterbar IMPORTED_LOCATION) +get_target_property(@PROJECT_NAME@_INCLUDE_DIRS LibtorrentRasterbar::torrent-rasterbar INTERFACE_INCLUDE_DIRECTORIES) +get_target_property(_lt_iface_link_libraries LibtorrentRasterbar::torrent-rasterbar INTERFACE_LINK_LIBRARIES) +get_target_property(_lt_imported_location LibtorrentRasterbar::torrent-rasterbar IMPORTED_LOCATION) set(@PROJECT_NAME@_LIBRARIES "${_lt_imported_location};${_lt_iface_link_libraries}")