In XCode, I recently made and tested a processing library that uses boost. I just set up a basic project in the IDE, coded away, and it builds fine.
I now want to use that library in another application. The other application's xcode project was automatically made using a 3rd party tool. When I try to include my boost-based library in this other application, I get errors stating . . .
No member named 'forward' in namespace 'std'
and also, the line . .
#include <tuple>
gives the preprocessor error
'tuple' file not found
Seeing as the original library builds just fine on my machine, the errors must be down to a difference in the build settings, but I cannot see the difference and do not know of a good way to compare the build settings of 2 different projects. Can anyone suggest the build setting that might be causing me the problem??
EDIT:
In both projects, the setting for
Compiler for C/C++/Objective-C = Apple LLVM Compiler 3.0
C++ Language dialect = Compiler default
C++ Standard Library = Compiler default
EDIT 2 [solved]:
- I still had C++11 dialect enabled in the Target settings. DoH!