New Qt Directory is not valid - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:37:32Z http://stackoverflow.com/feeds/question/967224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/967224/new-qt-directory-is-not-valid 0 New Qt Directory is not valid whatWhat 2009-06-08T21:56:39Z 2009-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#976812 0 Answer by whatWhat for New Qt Directory is not valid whatWhat 2009-06-10T16:44:34Z 2009-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#985509 0 Answer by Henrik Hartz for New Qt Directory is not valid Henrik Hartz 2009-06-12T07:50:33Z 2009-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>