mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 20:59:45 +08:00
33aa4b4c71
Since commit 6a97d0f3d377a35ea691d15ac142ce043f953e71 upstream, the target is in the harfbuzz:: namespace.
23 lines
700 B
Diff
23 lines
700 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index e881dbd1..69496561 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -761,11 +761,17 @@ endif ()
|
|
|
|
if (NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|
install(TARGETS harfbuzz
|
|
+ EXPORT harfbuzzConfig
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
FRAMEWORK DESTINATION Library/Frameworks
|
|
)
|
|
+ install(EXPORT harfbuzzConfig
|
|
+ NAMESPACE harfbuzz::
|
|
+ FILE harfbuzz-config.cmake
|
|
+ DESTINATION share/harfbuzz
|
|
+ )
|
|
if (HB_BUILD_UTILS)
|
|
install(TARGETS hb-view
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|