I'm working on a project using OpenCV and Visual Studio 2010. I'm having problems installing BASS audio libraries on VS 2010. I downloaded these win32 libraries
I added the bass.lib
file to the linker input, and I also added the path to the .lib file (which is C:\bass24\c
) in Additional Library Directories (in the linker section) and the #include "bass.h"
in my .cpp file. This is the same thing you do with OpenCV files or any external files, the only difference is that I don't know what to put in C/C++-> Additional Include Directories (it already has C:\opencv\build\include
for OpenCV in it). Does anyone know what to put there?
VS 2010 gives me this problem:
Error 1error C1083: Cannot open include file: 'bass.h': No such file or directory
P.S.: I'm working on a sonification project where I have to track a colored object from my camera and have to play music if that object moves in different positions. I want to use BASS because it is possible to use the multispeaker option (play music on the right speaker if the object moves right and so on).