mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
acca474962
* 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
22 lines
674 B
Diff
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"
|
|
+)
|