Build unqlite for Windows Phone 8.1 Store (WinRT) apps

We are developing a C ++ core for our mobile application. We will be using unqlite DB. We have compiled it for iOS and Android.

http://unqlite.org/downloads.html

When we try to compile it for WinRT, we get a lot of errors. Is there someone who compiled it for WinRT?

In theory, Windows Phone is supported ( http://www.developereconomics.com/five-popular-databases-for-mobile/ ).

thank

+3


source to share


1 answer


As I know, if you have a C ++ library and want to use it in Windows Phone Project, you need:

  • Create Windows Runtime Component (C ++ Project)
  • Include your C ++ library in the Windows Runtime Component
  • Establish a bridge between your C ++ library and Windows Phone project


You cannot include a regular C ++ library in a Windows Phone (Store) project

+2


source







All Articles