I want to include an external library called "raylib" on Dev-C++. I downloaded the library with .zip extension from github and tried to install it with Dev-C++ package installer, but it gives me an erorr and doesn't work. I exctracted it and tried other things like adding the library folder in the "Library" section in "Compiler Option" but it was useless. Could you help me please?
Asked
Active
Viewed 710 times
0
-
Terminology: You don't "Install" a library. You "Link" it. Knowing the right term may make your searching easier next time. – user4581301 Apr 13 '21 at 16:45
-
@user4581301 Well, before you can link to a library, you might need to "install" it. – πάντα ῥεῖ Apr 13 '21 at 16:55
-
True enough, but at the "Get the IDE to recognize the library" stage of the problem, you have to hope this has already been done. – user4581301 Apr 13 '21 at 17:00
-
You probably need to compile the github project from source using whatever compiler you are using with Dev C++ – drescherjm Apr 13 '21 at 18:38