Hi! I’m doing a new sink with QT, but I cannot to include at e110.
When I execute cmake, I have this error:
The
following variables are used in the project, but they are set to
NOTFOUND. Please set them or make sure they are set and tested correctly
in CMake files:QT_QTCORE_INCLUDE_DIR (ADVANCES)
…QT_QTGUI_INCLUDE_DIR (ADVANCES) …
I found this post
http://lists.gnu.org/archive/html/discuss-gnuradio/2011-11/msg00156.html
and I executed this cmake command, and worked:
cmake
-DCMAKE_TOOLCHAIN_DIR=…/cmake/Toolchains/arm_cortex_a8_native.cmake
-DENABLE_GRC=OFF -DENABLE_GR_QTGUI=OFF
-DQT_QTCORE_INCLUDE_DIR=/usr/include/qt4/QtCore
-DQT_QTGUI_INCLUDE_DIR=/usr/include/qt4/QtGui
…/
Then, when I execute make, I have this error:
/bin/sh: QT_UIC_EXECUTABLE-NOTFOUND: not found
Can anyone help me to solve this?
Thanks!
AA