I am facing a dilemma here. I have been working for over a year on a Computer Vision project which includes BOOST threads under windows/vs2010. Suddenly there is a requirement to move the code towards Android. Now after reading through on the internet, it seems that I have two choices
- Somehow build the BOOST thread libraries under JNI which is like a nightmare to me
- Remove BOOST threads and replace them with pthreads, windows threads, etc.
But If I remove BOOST, will replacing them with pthreads be useful? Will the code after wrapping in JNI work under android?
Any guidelines is helpful.
Thanks