Hi folks
I need some help with VS C++ 2010.
It is something very basic..
I downloaded and compiled the MIDI library from here:
https://github.com/jdkoftinoff/jdksmidi
The library already had a VSC2010 project file ready, which i was able to compile to a LIB. But once i did that, how do i compile the example files that came with the library?
I tried setting up a separate project for one of the examples, but then the example can't see the library header files so it won't compile.
At one point, i setup a project with a dependency on the project library, but i received an error on these lines included in the example:
using namespace jdksmidi;
#include "jdksmidi/world.h"
#include "jdksmidi/track.h"
#include "jdksmidi/multitrack.h"
#include "jdksmidi/filereadmultitrack.h"
#include "jdksmidi/fileread.h"
#include "jdksmidi/fileshow.h"
#include "jdksmidi/filewritemultitrack.h"
How do i create a namespace out of the compiled LIB project and where do i place the example file so it can find the library header files?
I know this is something very simple, but i am new to VS2010 and i have no clue of what i should do.
Thank you