Hi,
when trying to recompile a plugin for R20 using the latest "cinema.framework" I get a "missing file" error (on Mac):
/frameworks/cinema.framework/source/c4d_customgui/customgui_description.h:15:10: 'c4d_misc/datastructures/delegate.h' file not found
This file is referenced from other R20 SDK's includes. Indeed, such a file does NOT exist at that location. The parent include looks like this:
#ifdef USE_API_MAXON
#include "maxon/delegate.h"
#else
#include "c4d_misc/datastructures/delegate.h"
#endif
I have not defined USE_API_MAXON
in my build because I don't use the new maxon API. Defining it anyways gives me tons of syntax errors due to old R19 code.
Any hints?