Reputation: 33
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
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