How to upload program .exe with raylib.h library so user could use it without downloading raylib directly?

Viewed 34

How to upload program .exe with raylib.h library so user could use it without downloading raylib directly? I made a game using raylib.h now I want to send a game to my friend so he could play but he can't open it if I just send .exe file(he don't have raylib instaled). Is here a way to send it so he could just download the game file and play it? Game do not use some textures or external files except raylib.h. Hope I explained clearly enough ;)

1 Answers

Create an installer (.MSI on Windows) that packages your app + all its dependencies (don't forget the compiler runtime libraries). Then send the .MSI to your friend to install.

Related