-
Notifications
You must be signed in to change notification settings - Fork 35
Description
Hello!
I've been trying unsuccessfully for two days now to try and compile this library to use within my code on Mac OSX Mavericks, 10.9.3. I've tried using the included build systems (Cmake, Xcode, and MagicMake) and no matter how I try to link the built library and includes, I always get a file not found error when compiling:
'jdkmidi/world.h' file not found
I'm using the following command within a makefile, both as a standalone compiled from the command line, and as an Xcode 5 project with the jdksmidi library as a dependency:
`g++ -g -o File File.cpp -l jdksmidi -I /usr/include/jdksmidi``
Is there something I'm missing, or otherwise doing incorrectly? I can compile the library fine, but getting it to actually link and find all the source files is the challenge here. I feel I may not be doing something correct.