Quote:
Originally Posted by user_none
Did you manually run "make install" ?
QtCreator will not run that for you by default when you build. You must run "make install" for that section to apply. The lib and build directories are created by the build process for the build.
Install is a different target. The bin and lib dirs in the install target are completely different. You should not install into your build dir root either. You'll run into all kinds of problems because you're going to have files in bin trying to be installed into bin. Use a dir under build like "inst" as your install target.
|
must have been obvious, humm? thanks.