Adding JUCE to your app is very simple - the easiest way involves simply including juce.h in your files and adding a single cpp file to your project. No need to compile any libraries or worry about dependencies.
So I downloaded JUCE, and now I have a folder called "juce". I put the juce folder's path in my projects XCode Header Search paths. I took one of my header files and wrote #include <juce.h>. Then, in that headers accompanying .cpp file, I put a function called TestJUCE(), also declared it in the .h file, and wrote this:
void TestJUCE()
{
OggVorbisAudioFormat* ogg = new OggVorbisAudioFormat();
bool rtBool = ogg->canDoStereo();
}
Upon compiling and linking, I get a link error, Symbol not found.
I've kept this real simple because I just was following the above intro instruction. What am I doing incorrectly?
