Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/albin-johansson/download-sdl2-image
An action for downloading SDL2_image sources and binaries on Windows, using MSVC.
https://github.com/albin-johansson/download-sdl2-image
actions ci dependency download msvc sdl2 sdl2-image windows
Last synced: 18 days ago
JSON representation
An action for downloading SDL2_image sources and binaries on Windows, using MSVC.
- Host: GitHub
- URL: https://github.com/albin-johansson/download-sdl2-image
- Owner: albin-johansson
- License: mit
- Created: 2021-03-11T20:28:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-20T11:13:08.000Z (about 3 years ago)
- Last Synced: 2024-03-15T11:02:03.223Z (8 months ago)
- Topics: actions, ci, dependency, download, msvc, sdl2, sdl2-image, windows
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# download-sdl2-image
This is an action for downloading SDL2_image sources and runtime binaries on Windows using MSVC.
The downloaded headers will be stored under `sources_destination`, in a separate `SDL2_image-X.Y.Z` folder, where `X.Y.Z` corresponds to the `version` parameter, e.g. `2.0.14`. The `binaries_destination` is the folder where all the runtime binaries (`.dll` files) will be stored.
Note, you will have to make sure that the destination folders exist before invoking the action.
## Usage
```yml
- name: Download SDL2_image
uses: albin-johansson/download-sdl2-image@latest
with:
sources_destination: .
binaries_destination: bin
```