I have this library called BASS which is an audio library which I\'m going to use to record with the microphone. I have all the files needed to use it, but I don\'t know how to
If there are files named configure
, Makefile
or install
you can try running them in that order. After that, any program that wants to link with this library must use a command like this:
c++ -l -L
The library path is usually the original library folder itself, unless you explicitly change it or the library itself puts its files in global locations like /usr/local
or something like that.