Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/albin-johansson/download-sdl2-ttf

An action for downloading SDL2_ttf sources and binaries on Windows, using MSVC.
https://github.com/albin-johansson/download-sdl2-ttf

actions ci dependency download msvc sdl2 sdl2-ttf windows

Last synced: about 1 month ago
JSON representation

An action for downloading SDL2_ttf sources and binaries on Windows, using MSVC.

Awesome Lists containing this project

README

        

# download-sdl2-ttf

This is an action for downloading SDL2_ttf sources and runtime binaries on Windows using MSVC.

The downloaded headers will be stored under `sources_destination`, in a separate `SDL2_ttf-X.Y.Z` folder, where X.Y.Z corresponds to the version, e.g. `2.0.15`. 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_ttf
uses: albin-johansson/download-sdl2-ttf@latest
with:
sources_destination: .
binaries_destination: bin
```