Hi all,
I am using frameworks from a company that has horrendous support (they're in Finland, I'm in the US) for their product; they don't explain their product at all, and it is mostly down to my ability to figure out how to troubleshoot the particular problem at the moment. Just in case someone wants me to just kick it back to them.
My problem is this: I can't seem to properly import header files. For example, I want to use SimpleSDLApplication.hpp, contained within the framework MultiWidgets. The following implementations of the include statement do not work (meaning, they are not found):
The only permutation I have found to work is the following (with qualifications):
However, this generates its own set of problems when it tries to read through the header SimpleSDLApplication.hpp, as all of the headers referenced there are using the #include <XYZ.hpp> format.
The framework is installed in /Library/Frameworks/. I'm at a loss as to what's going on. I understand the answer is probably very simple, but I do appreciate any help I can get with this.
EDIT: Forgot to mention that I have tried to include it all within my Xcode Project; I made a group and added MultiWidget.framework to that group.
I am using frameworks from a company that has horrendous support (they're in Finland, I'm in the US) for their product; they don't explain their product at all, and it is mostly down to my ability to figure out how to troubleshoot the particular problem at the moment. Just in case someone wants me to just kick it back to them.
My problem is this: I can't seem to properly import header files. For example, I want to use SimpleSDLApplication.hpp, contained within the framework MultiWidgets. The following implementations of the include statement do not work (meaning, they are not found):
Code:
#include <SimpleSDLApplication.hpp>
#include "SimpleSDLApplication.hpp"
#include "MultiWidgets/SimpleSDLApplication.hpp"
#include <MultiWidgets/SimpleSDLApplication.hpp>
The only permutation I have found to work is the following (with qualifications):
Code:
#include "MultiWidgets.framework/Headers/SimpleSDLApplication.hpp"
However, this generates its own set of problems when it tries to read through the header SimpleSDLApplication.hpp, as all of the headers referenced there are using the #include <XYZ.hpp> format.
The framework is installed in /Library/Frameworks/. I'm at a loss as to what's going on. I understand the answer is probably very simple, but I do appreciate any help I can get with this.
EDIT: Forgot to mention that I have tried to include it all within my Xcode Project; I made a group and added MultiWidget.framework to that group.
Last edited: