dmo
dmo

Reputation: 33

SDL runtime binaries, what are they used for?

I am following a tutorial that takes me to this SDL page (https://www.libsdl.org/download-2.0.php). In there, I can see three things I can download:

I am trying to make sense out of them. My understanding is this:

What are the runtime binaries for? I imagine these thee scenarios:

Upvotes: 2

Views: 2295

Answers (1)

Jesper Juhl
Jesper Juhl

Reputation: 31475

The runtime binaries / libraries are the files that your application needs to use at run-time to access the library functions. They are the files that contain the actual compiled code of the library that your application will call when it is executed.

Upvotes: 4

Related Questions