On Friday 04 February 2011 06:29:21 David C. Rankin wrote: [...]
trinity_prefix="/opt/trinity"
cd ${srcdir} cmake ../ \ -DCMAKE_INSTALL_PREFIX=${trinity_prefix} \ -DWITH_QT3=ON \ -DBUILD_ALL=ON \ -DCMAKE_SKIP_RPATH=ON make || return 1 }
But even with these variables, the build grabs QtCore regardless. Are there any other cmake variables that I can use that would make sense in this situation?
Try to add "-DQTDIR=/opt/qt" to cmake arguments.
[...]