Reputation: 488
I am facing a problem configuring Qt Creator, unable to add Qt Version. Error is shown below :
I had installed Cascades native NDK and the BB simulator.
Help me out of this problem....
Upvotes: 0
Views: 403
Reputation: 488
Ok i have done as per your updated answer, now error spoted is different than the previous one and that is "No qml Viewer installed".
Upvotes: 0
Reputation: 20140
I think you're using Windows. So all next is context depended on Windows.
You need to add special environment variables like these:
QNX_TARGET=C:/Development/bb-ndk-3.0/target_10_0_9_386/qnx6
QNX_HOST=C:/Development/bb-ndk-3.0/host_10_0_9_52/win32/x86
QNX_CONFIGURATION=C:\Users\user\AppData\Local\Research In Motion\BlackBerry Native SDK
MAKEFLAGS=-I%QNX_TARGET%/usr/include
PATH=%QNX_HOST%\usr\bin;%QNX_CONFIGURATION%\bin;C:\Development\bb-ndk-3.0\ide\win32\x86\eclipse\jre\bin;%PATH%
PYTHONPATH=
QDE=C:\Development\bb-ndk-3.0\ide\win32\x86
or run bbndk-env.bat
before starting Qt Creator:
bbndk-env.bat
to bin folder for QtCreatorqtcreator.exe
Upvotes: 1