Hi guys,
Just wanted to test some examples on OSX and iOS, since it seems the error #2764 is solved
So, what do I need to do?
I’ve cloned the github repository, but can’t find a way to build the examples for OSX nor iOS.
Any help is appreciated,
Regards.
compile OF, then the project generator in app/devApps/projectgenerator. It should have a button “generate examples”, with a selection for the OS.
admsyn
January 18, 2014, 10:44pm
#3
That bugfix doesn’t enable C++11, though. in fact it’s kind of the opposite: the issue was that Xcode wanted to compile OF with the C++11 version of the standard library, and that PR makes sure that new projects ask to be compiled with the pre-C++11 standard library.
C++11 support is still in progress, you can see some work here: https://github.com/openframeworks/openFrameworks/issues/2335
@bilderbuchi hmmm… here is what I did, cloned from the official rep
git clone https://github.com/openframeworks/openFrameworks.git openFrameworks
tried to build all the examples
cd openFrameworks/scripts/osx/
./buildAllExamples.sh
but it complains with lots of “no xcode project for …/…/examples/someExample”
then as you suggested, I searched a way to build openFrameworks but cant find a script or something to build it
also tried to switch to develop brach as some tutorials suggest but there isn’t such branch, so I’m clonning again just in case
@admsyn Thanks for the aclaration
arturo
January 19, 2014, 1:34pm
#5
the buildAllExamples script won’t work with the github version since the project files don’t exist, you need to create them using the project generator
yeah, isn’t that just what I wrote above?
@bilderbuchi Yep, it’s just that I misunderstood the “compile OF…” part, I thought the release on http://www.openframeworks.cc/download/ was built using automated scripts, thanks, anyway