Cross platform application and OpenCV

asked 2015-05-01 04:52:59 -0600

essamzaky gravatar image

updated 2015-05-06 12:15:48 -0600

I want build an application which can be used in most of known operating system (Windows , Linux , Adriod , iso , BlackBerry,Windows phone, )

my questions are: how i can do that ? which laguage is requierd to write this module ? Is it possible to make one source code for all OS specially for the mdoule which use OpenCV ?

i'm c++ developer on windows thanks for your advice

edit retag flag offensive close merge delete

Comments

two hints about your question are a) the use static or shared libraries and b) cross-platform compilation toolchain. Briefly you have to decide if your application is gonna static or shared linked to included libraries (e.g. opencv) if it is the former, then you will have to compile the library as static and embedded it in your final binary. After that you should compile your application based on a toolchain same to the target system where you want your binary to work.

theodore gravatar imagetheodore ( 2015-05-07 06:11:23 -0600 )edit