New Qt Directory is not valid - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:37:32Zhttp://stackoverflow.com/feeds/question/967224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/967224/new-qt-directory-is-not-valid0New Qt Directory is not validwhatWhat2009-06-08T21:56:39Z2009-06-12T07:50:33Z
<p>I've written an application using Qt on OS X. The installed SDK automatically installed as a framework which I didn't want. So I cloned their newest version from the Qt git repository and built it from source as static libraries. I would like it to compile using those static libraries instead of the framework but in preferences in setting the version/Path of Qt no matter what path I direct it to it says it's not a valid Qt directory. What has to be in a qt Directory that constitutes it being valid?</p>
http://stackoverflow.com/questions/967224/new-qt-directory-is-not-valid/976812#9768120Answer by whatWhat for New Qt Directory is not validwhatWhat2009-06-10T16:44:34Z2009-06-10T16:44:34Z<p>I'm closing this, The problem was installing on OSX I needed to declare -no-framework when running configure. </p>
http://stackoverflow.com/questions/967224/new-qt-directory-is-not-valid/985509#9855090Answer by Henrik Hartz for New Qt Directory is not validHenrik Hartz2009-06-12T07:50:33Z2009-06-12T07:50:33Z<p>Some tips; </p>
<ul>
<li>Install into a path that doesn't contain spaces</li>
<li>Use -prefix $PWD from the current path, and set the PATH, INCLUDE and LIB env variables appropriately - this makes it possible to have multiple Qt builds, e.g. multiple shadow builds from one source directory</li>
<li>Don't do static configure - it makes using plugins difficult, and assuming you use LGPL you have to ship the .o files.</li>
</ul>