Hello,
I’ve App for mobile devices and would like to include Windows Phone / WinRT support.
The App is based on the App itself + library. On Andoird I have used following directives in .pro file to include my library in deployment:
android{
LIBS += -L/home/acerextensa/DATA/Dev/MobileApp/build-Webservices-Android_for_armeabi_v7a_GCC_4_9_Qt_5_4_0-Release -lWebservices
}
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_EXTRA_LIBS = \
$$PWD/../build-Webservices-Android_for_armeabi_v7a_GCC_4_9_Qt_5_4_0-Release/libWebservices.so
}
but I can’t find a way to do so with WinRT. If I just use
WINRT_EXTRA_LIBS = -L$$PWD/../build-Webservices-Qt_5_4_1_for_Windows_Phone_arm_MSVC2013_32bit-Release/release/Webservices.dll
winrtrunner just fails with error:
Failed to start the package: 0x8027025b "The app didn't start."
It looks like the App misses the library….
Does anyone know how to include extra libs in WinRT deployment?
Thank you in advance!
↧