vcpkg/ports/lerc/create_package.patch
Kai Pastor acca474962
[lerc] Update to 3.0, move config to unofficial (#24634)
* Update to 3.0

* Modernize portfile

* Install NOTICE as required by license

* Move CMake config to unofficial namespace

The target name changed, so old configs would break anyways,
without polyfill. The unofficial namespace reflects such risks.

* Add include path to CMake config

* Update versions
2022-05-10 11:37:35 -07:00

22 lines
674 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e90fcdd..17c79e8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,9 +26,16 @@ add_library(LercLib ${SOURCES})
endif()
install(
TARGETS Lerc
+ EXPORT LercTargets
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
+target_include_directories(Lerc PUBLIC "$<INSTALL_INTERFACE:include>")
+install(EXPORT LercTargets
+ FILE unofficial-lerc-config.cmake
+ NAMESPACE unofficial::Lerc::
+ DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/unofficial-lerc"
+)