10-21-2012 05:28 PM
The bar descriptor file is set right. This is what I included in the .pro file:
LIBS += -lbbplatformbbm
This is what I get as a result:
MAKEFILE_GENERATORC:\bbndk\host_10_0_9_52\win32\x86\usr\bin\ntox86-ld: cannot find -lbbplatformbbm cc: C:/bbndk/host_10_0_9_52/win32/x86/usr/bin/ntox86-l d caught signal 1 make[2]: *** [o-g/PicStory] Error 1 make[2]: Leaving directory `C:/Users/Aleksandar/ndk-10.0.9-workspace/PicStory /PicStory/x86' make[1]: Leaving directory `C:/Users/Aleksandar/ndk-10.0.9-workspace/PicStory /PicStory/x86' make[1]: *** [debug] Error 2 make: *** [Simulator-Debug] Error 2
As can be seen, I build for simulator. How do I fix this error?
Solved! Go to Solution.
10-22-2012 12:03 AM
Hi,
You can find the BBM integration demo on the following link.
Link: https://github.com/blackberry/Cascades-Community-S
Thanks,
Megha.
10-22-2012 01:34 AM
You need both of these
LIBS += -lbbmsp
LIBS += -lbbplatformbbm
10-22-2012 05:56 AM - edited 10-22-2012 06:29 AM
The Cascade samples (which I did check out before) contain the same library.
Including both:
LIBS += -lbbmsp LIBS += -lbbplatformbbm
Doesn't make any difference, I still get the same error.
Have you tried bulding it for simulator?
10-22-2012 09:38 AM
The BlackBerry Devl Alpha Simulator does not currently support BBM. Are you getting any errors when building for device?
11-02-2012 10:09 PM
I do get the same error and im building on dev alpha ???
11-11-2012 07:25 PM