i have some problems getting oF playing nicely with qtcreator 4.4.1 on osx.
before a newly created project (using qt-creator) got parsed correctly 2 files needed some changes. cpp.minimumOsxVersion in files openFrameworks.qbs and ofApp.qbs needs to be strings in order for qbs to parse the files properly.
i also aligned the minimumOsxVersion number in the files, it looks like this now in both files:
additionally i needed to add a qbs profile setting in the Kit i am using: qbs.architecture:"x86_64"
(shouldn’t this be rather derived automatically from the kit?)
then all the files show up in qtcreator…
when building the project the compile output looks like this:
compiling main.cpp
compiling ofApp.cpp
generating Info.plist for qtcreatortest
generating PkgInfo for qtcreatortest
/usr/bin/make -j4 Debug
...
HOST_OS=Darwin
Done!
linking $(PRODUCT_NAME)
generating dSYM for qtcreatortest
this produces 2 defunct applications:
$(PRODUCT_NAME).app
qtcreatortest_debug.app
the output-folder looks like this:
but running make manually in the project-folder does produce a working application bundle:
qtcreatortest.app