c++ - How to combine all dll's and make a single DLL? -


how combine dll's , make single dll?

i have written algorithm using opencv, want make single dll while combines used opencv dll's

if possible please suggest steps.

first step find out if opencv supports static linkage (ie if can link .lib without of .dlls). libraries don't. libraries made support customizing (not trivial stated, doable). big if.

but assuming opencv supports static linkage, need compile .lib (project of "type library" type). in project (output type dll) uses opencv, link opencv.lib. couple of caveats: make sure use same unicode settings , "code generation" crt linkage (/mt or /mtd or /md or /mdd) projects, including opencv.

i not find @ glance whether opencv supports static linkage.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -