-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe08d45
commit 1a2e1ea
Showing
4 changed files
with
40 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
sources: | ||
"2.8.2": | ||
url: "https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.2/SDL2_image-2.8.2.tar.gz" | ||
sha256: "8f486bbfbcf8464dd58c9e5d93394ab0255ce68b51c5a966a918244820a76ddc" | ||
"2.6.3": | ||
url: "https://github.com/libsdl-org/SDL_image/releases/download/release-2.6.3/SDL2_image-2.6.3.tar.gz" | ||
sha256: "931c9be5bf1d7c8fae9b7dc157828b7eee874e23c7f24b44ba7eff6b4836312c" | ||
"2.0.5": | ||
url: "https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.5.tar.gz" | ||
sha256: "bdd5f6e026682f7d7e1be0b6051b209da2f402a2dd8bd1c4bd9c25ad263108d0" | ||
patches: | ||
"2.8.2": | ||
- patch_description: "Fix webpdemux cmake target name" | ||
patch_file: "patches/webpdemux-target.patch" | ||
patch_source: "https://github.com/libsdl-org/SDL_image/pull/479" | ||
patch_type: "portability" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 35e3cb865f8394bdc8bb2d2cf6e9f91dfd3c94bd Mon Sep 17 00:00:00 2001 | ||
From: Andrey Filipenkov <[email protected]> | ||
Date: Sat, 23 Nov 2024 00:47:15 +0300 | ||
Subject: [PATCH] fix name case of webpdemux target | ||
|
||
(cherry picked from commit 0d418a2a2dc562699854d9c2fc264304ec404e2c) | ||
--- | ||
cmake/Findwebp.cmake | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/cmake/Findwebp.cmake b/cmake/Findwebp.cmake | ||
index 58891318..e07b377c 100644 | ||
--- a/cmake/Findwebp.cmake | ||
+++ b/cmake/Findwebp.cmake | ||
@@ -43,7 +43,7 @@ if (webp_FOUND) | ||
INTERFACE_LINK_FLAGS "${webp_LINK_FLAGS}" | ||
) | ||
endif() | ||
- if (NOT TARGET WEBP::webpdemux) | ||
+ if (NOT TARGET WebP::webpdemux) | ||
add_library(WebP::webpdemux UNKNOWN IMPORTED) | ||
set_target_properties(WebP::webpdemux PROPERTIES | ||
IMPORTED_LOCATION "${webpdemux_LIBRARY}" |
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,4 +1,6 @@ | ||
versions: | ||
"2.8.2": | ||
folder: "all" | ||
"2.6.3": | ||
folder: "all" | ||
"2.0.5": | ||
|