View Single Post
Old 09-25-2014, 06:50 PM   #51
user_none
Sigil & calibre developer
user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.user_none ought to be getting tired of karma fortunes by now.
 
user_none's Avatar
 
Posts: 2,487
Karma: 1063785
Join Date: Jan 2009
Location: Florida, USA
Device: Nook STR
Quote:
Originally Posted by varlog View Post
hmm, interesting... there is this:
...
in CMakeList.txt.
bin/ is created, lib/ is there...(?!) share/ is not. Qt Creator bug?
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.
user_none is offline