2018-04-26 16:13:05 +02:00
|
|
|
# - Config file for the @PROJECT_NAME@ package
|
|
|
|
# It defines the following variables
|
|
|
|
# @PROJECT_NAME@_INCLUDE_DIRS - include directories for @PROJECT_NAME@
|
|
|
|
# @PROJECT_NAME@_LIBRARIES - libraries to link against
|
|
|
|
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
@_find_dependency_calls@
|
|
|
|
|
2018-05-14 11:01:44 +02:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/LibtorrentRasterbarTargets.cmake")
|
2018-04-26 16:13:05 +02:00
|
|
|
|
2018-05-14 11:01:44 +02:00
|
|
|
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)
|
2018-04-26 16:13:05 +02:00
|
|
|
set(@PROJECT_NAME@_LIBRARIES "${_lt_imported_location};${_lt_iface_link_libraries}")
|