Talk:Setting up EMGU C Sharp

From EMGU
Revision as of 14:59, 9 January 2015 by Hichaeretaqua (talk | contribs) (Created page with "=Addition to less preferred method= I don't really like to bloat up my project folder by having all this third party dll is there. So I used a post-build command to automate t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Addition to less preferred method

I don't really like to bloat up my project folder by having all this third party dll is there. So I used a post-build command to automate this. Within my solution folder there is a ThirdParty folder with all the OpenCV dll is there.

copy $(SolutionDir)..\ThirdParty\OpenCV\*.dll $(SolutionDir)$(OutDir)

So every time I get an valid build, this script copies all dll needed to the output directory.

Hichaeretaqua (talk) 14:59, 9 January 2015 (UTC)