-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[lunasvg] Add usage #30196
Merged
Merged
[lunasvg] Add usage #30196
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bd897b1
[lunasvg] Add usage
JonLiu1993 b8dd047
update version
JonLiu1993 23b0330
update cmake
JonLiu1993 626f7ec
update version
JonLiu1993 caa60df
update patch
JonLiu1993 db6c8fe
update version
JonLiu1993 ab8af17
optimize portfile.cmake
JonLiu1993 74887e4
update version
JonLiu1993 94183b3
update cmake_function
JonLiu1993 6f93b16
update version
JonLiu1993 6bbc2b8
Merge branch 'master' of https://github.com/microsoft/vcpkg into dev/…
JonLiu1993 b6a9dd7
[lunasvg] update to latest commit fix issue
JonLiu1993 56a93fa
update version
JonLiu1993 b033807
Merge branch 'dev/Jon/lunasvg' of https://github.com/JonLiu1993/vcpkg…
JonLiu1993 51b7419
update version
JonLiu1993 ad41693
update version
JonLiu1993 e080211
update version
JonLiu1993 ca851b1
updatre version
JonLiu1993 6490988
update version
JonLiu1993 1441bad
update version
JonLiu1993 5b47f27
update lunasvg to 2.3.8
81cac2f
update version
d522f1e
Fix conflicting file
39cbdcc
update version
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index ea4b2d2..f622d45 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -32,7 +32,10 @@ install(FILES | ||
) | ||
|
||
install(TARGETS lunasvg | ||
- LIBRARY DESTINATION ${LUNASVG_LIBDIR} | ||
- ARCHIVE DESTINATION ${LUNASVG_LIBDIR} | ||
- INCLUDES DESTINATION ${LUNASVG_INCDIR} | ||
-) | ||
+ EXPORT unofficial-lunasvg-config | ||
+ RUNTIME DESTINATION bin | ||
+ LIBRARY DESTINATION lib | ||
+ ARCHIVE DESTINATION lib | ||
+ PUBLIC_HEADER DESTINATION include) | ||
+ | ||
+install(EXPORT unofficial-lunasvg-config NAMESPACE unofficial::lunasvg:: DESTINATION share/unofficial-lunasvg) | ||
\ No newline at end of file | ||
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt | ||
index de58954..74149dc 100644 | ||
--- a/include/CMakeLists.txt | ||
+++ b/include/CMakeLists.txt | ||
@@ -1,4 +1,5 @@ | ||
target_include_directories(lunasvg | ||
PUBLIC | ||
- "${CMAKE_CURRENT_LIST_DIR}" | ||
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}> | ||
+ $<INSTALL_INTERFACE:include> | ||
) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "27a82fac0168f7e17be4e9b8981833ed381197dc", | ||
"version": "2.3.8", | ||
"port-version": 1 | ||
}, | ||
{ | ||
"git-tree": "064296e0fbadcd3113e5ee2a65202614c9125acc", | ||
"version": "2.3.8", | ||
"port-version": 0 | ||
}, | ||
{ | ||
"git-tree": "bf20380ca537151f7d1e02a6ca5b19c302db18c7", | ||
"version": "2.3.1", | ||
"port-version": 0 | ||
} | ||
] | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR #32510 Deleted the historical "git-tree" when updating lunasvg, I restore it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops 😳. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake, thanks for the fix!