I'm trying to compile a simple program that's already been written included in the Steinberg VST SDK.
The issue I'm having is my compiler can't find the file unless it has an absolute path. For some reason, the code is written in such a way that my compiler can't find where the file needed it.
For example:
In the file vstcomponentbase.h, located in C:\Users\180945\Documents\Programs\vstsdk352_25_09_2012_build_16\VST3 SDK\public.sdk\source\vst\
There is this line:
#include "pluginterfaces/base/ipluginbase.h"
ipluginbase.h is located in C:\Users\180945\Documents\Programs\vstsdk352_25_09_2012_build_16\VST3 SDK\plugininterfaces\base
Unless I change the line to
#include "C:\Users\180945\Documents\Programs\vstsdk352_25_09_2012_build_16\VST3 SDK\pluginterfaces\base\ipluginbase.h"
it won't work.
I'm using NetBeans as my IDE. I'd like for the files to automatically find where the files are supposed to be. It should work, as I'm using Steinberg's VST SDK, which has demonstrations and other bits of code that are supposed to work as given. There would be too many things to edit in something that should already work.