vcpkg/ports/lunasvg/fix-install.patch
Leonid Pospelov 6dff39f134
[lunasvg] Add new port (#23867)
* [lunasvg] Add new port

* Run x-add-version

* Update portfile.cmake

* Add license to vcpkg.json

* Update lunasvg.json

* Replace tabs with spaces

* Run x-add-version

* Update vcpkg.json

* Update lunasvg.json
2022-04-05 11:07:47 -07:00

27 lines
888 B
Diff

CMakeLists.txt | 15 ++-------------
1 file changed, 2 insertions(+), 13 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9916c67..159f3a6 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -24,16 +24,5 @@ if(LUNASVG_BUILD_EXAMPLES)
add_subdirectory(example)
endif()
-set(LUNASVG_LIBDIR ${CMAKE_INSTALL_PREFIX}/lib)
-set(LUNASVG_INCDIR ${CMAKE_INSTALL_PREFIX}/include)
-
-install(FILES
- include/lunasvg.h
- DESTINATION ${LUNASVG_INCDIR}
-)
-
-install(TARGETS lunasvg
- LIBRARY DESTINATION ${LUNASVG_LIBDIR}
- ARCHIVE DESTINATION ${LUNASVG_LIBDIR}
- INCLUDES DESTINATION ${LUNASVG_INCDIR}
-)
+set_target_properties(lunasvg PROPERTIES PUBLIC_HEADER "include/lunasvg.h")
+install(TARGETS lunasvg RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib PUBLIC_HEADER DESTINATION include)