Hi admd91,
The key is to set the environment variables correctly.
@
source /opt/poky/1.4.1/environment-setup-armv7a-vfp-neon-poky-linux-gnueabi
@
When run this script, it loads all the environment variables correctly. Then the environment is set correctly to cross compile your application.
After you execute the script, you might run the following
@
qmake -project
qmake
make
@
This is one way to build the Qt application. Or else, You can also set the Build and Run options in Qt creator with the cross compiler path and build it directly from the Qt Creator.
--Kumara