Problem with deployment on Win CE
-
I create a qml project with Qt Creater, which use declarative module to show qml file. it is running smoothly on windows xp,but when i deploy it on the wince ,it report below error:
ubable to start programme '\NandFlash\Program Files\myDeclarative\myDeclarative.exe'
The process of create project is that:
Create a project with qt creater,and then set the environment:
1 set INCLUDE=D:\Program Files\Microsoft Visual Studio 8\VC\ce\include;D:\Program Files\Windows CE Tools\wce600\TE6410 Board\Include\Armv4i
set LIB=D:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\armv4i;D:\Program Files\Windows CE Tools\wce600\TE6410 Board\Lib\ARMV4I
set PATH=D:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm;%PATH%
2 run the following command:
D:\qt-ce-4.7.3\bin\qmake.exe -spec D:\qt-ce-4.7.3\mkspecs\wince60standard-armv4i-msvc2005 -win32 -o Makefile hello.proD:\qt-ce-4.7.3\bin\qmake -tp vc
3 open Directread.vcproj with vs2005,
4 build the project with vs2005
5 deploy the exe on the wince board
can you help me ? -