mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 22:09:00 +08:00
7ceccee7f8
* [graphviz] Cleanup * Refresh patches * Versions * Disable #pragma comment lib * DLLs without exports * [librsvg] Modernize * Revise vendored librsvg build * [libcroco] Revise vendored build * [librsvg] Revise vendored build, cont. * [libcroco] Fix version * [librsvg] Fix pc file * [librsvg] Fix config polyfill * Mingw fixes, no abs paths * No abs paths
15 lines
582 B
CMake
15 lines
582 B
CMake
file(READ "${CMAKE_CURRENT_LIST_DIR}/../librsvg/usage" usage)
|
|
message(WARNING "find_package(unofficial-librsvg) is deprecated.\n${usage}")
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(PkgConfig)
|
|
pkg_check_modules(VCPKG_LIBRSVG librsvg-2.0 IMPORTED_TARGET)
|
|
if(NOT VCPKG_LIBRSVG_FOUND)
|
|
set(${CMAKE_FIND_PACKAGE_NAME}_FOUND 0)
|
|
elseif(NOT TARGET unofficial::librsvg::rsvg-2)
|
|
add_library(unofficial::librsvg::rsvg-2 INTERFACE IMPORTED)
|
|
set_target_properties(unofficial::librsvg::rsvg-2 PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES PkgConfig::VCPKG_LIBRSVG
|
|
)
|
|
endif()
|