Hi
I'm new to C++ and I'd like to make a program that responds to MIDI input from an external device (e.g. MIDI keyboard). I've found a library that should do what I want here:
http://www.music.mcgill.ca/~gary/rtmidi/index.htm.
I'm using VC++ 2010 Express, and I can't figure out how to actually use the library in my project. I've tried importing the source files and headers and then using an include directive, but I keep getting 'LNK2019 - unresolved external symbol' errors. I've also tried compiling the source files as a static library (.lib) file and importing that, but that doesn't work either.
Does anybody know how I can actually use this library? :confused:
Thanks :)