How do I install a c++ library so I can use it?

前端 未结 4 1969
情深已故
情深已故 2021-01-31 08:34

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

4条回答
  •  迷失自我
    2021-01-31 09:21

    Installing a C++ library means specifying to interested software (eg. a compiler) the location of two kinds of files: headers (typical extensions *.h or .hpp) and compiled objects (.dll or *.lib for instance).

    The headers will contain the declarations exposed to the developer by the library authors, and your program will #include them in its source code, the dll will contain the compiled code which will be or linked together and used by your program, and they will be found by the linker (or loaded dynamically, but this is another step).

    So you need to

    1. Put the header files in a location which your compiler is aware of (typically IDE allows to set so-called include directories, otherwise you specify a flag like "-I" when invoking the compiler)
    2. Put the dll files in a location which your linker is aware of (surely your IDE will allow that, otherwise you speficy a flag like "-L -l"

    Last but not least, since I see that BASS library is a commercial product, probably they will have made available some installation instructions?

提交回复
热议问题