Skip to content
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

[rmlui] Add feature for SVG rendering using lunasvg #40748

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ports/rmlui/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ vcpkg_from_github(
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
lua RMLUI_LUA_BINDINGS
svg RMLUI_SVG_PLUGIN
)

if("freetype" IN_LIST FEATURES)
Expand Down
7 changes: 7 additions & 0 deletions ports/rmlui/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "rmlui",
"version": "6.0",
"port-version": 1,
"maintainers": "Michael R. P. Ragazzon <[email protected]>",
"description": "RmlUi is the C++ user interface library based on the HTML and CSS standards, designed as a complete solution for any project's interface needs.",
"homepage": "https://github.com/mikke89/RmlUi",
Expand Down Expand Up @@ -35,6 +36,12 @@
"dependencies": [
"lua"
]
},
"svg": {
"description": "Enable plugin for SVG images",
"dependencies": [
"lunasvg"
]
}
}
}
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -7862,7 +7862,7 @@
},
"rmlui": {
"baseline": "6.0",
"port-version": 0
"port-version": 1
},
"rmqcpp": {
"baseline": "1.0.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/r-/rmlui.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "fdd8836a66e7c33d1454a1a1376ad32bf78da5f1",
"version": "6.0",
"port-version": 1
},
{
"git-tree": "845eceb8c79319709a6bee36adacb6b58ab81a05",
"version": "6.0",
Expand Down