I am using Ubuntu 16.04 which comes with Qt Creator 3.5.1
I am using the lastest oF nightly build
I ran install_dependencies.sh ands codecs
I can’t open the project, QtCreator keeps complaining that “import qbs not found” in myProject.qbs
Does Qt and openFrameworks work in 16.04 ?
PS : I built projectGenerator. PG Gui keeps complaining that projectGenerator is missing. I had to create a project from projectGenerator command line. Though i am trying to use QtCreator so i am using Qt for now… but just to keep you informed…
this may not help you because I am not using the projectGenerator but I am on Ubuntu 16.04 and happy with openFrameworks and QtCreator since years. I always setup a project like this:
Copy (empty) example or old project
Copy Makefile and config.make from scripts/templates/linux64 to project folder
(optional) change OF path in config.make
(optional) add addons.make file with used addons, one per line
Go to Qt Creator > New Project > Import Project > Import Existing Project > Chose the project folder > confirm the rest
Set executable under Projects > Run > Executable (usually I have to put projectName_debug in there) and set Working directory to %{buildDir}/bin
code completion: QtCreator should have created a file called projectName.includes, add the include paths of OF (example )
multiple core compilation: Projects > Build > Build steps > Details > Make arguments > set it to -j7 or whatever
release instead of debug version: Projects > Build > Build steps > Details > Make arguments > add Release and don’t forget to change the executable (remove the _debug)
Last note: I am currently using QtCreator 3.6.0 (I always download it from their page, seems to be better in debugging)
it works with qtcreator 3.6.1 downloaded from Qt website
though i cannot build my app which contains an external addon (ofxBox2d) : file (box2d header) not found
i created a new project using Qt template and added the ofxBox2d addon manually into the qbs file.