i am working on a C++ project.
I am using OpenCV library. I added the directories to my system PATH. And added all the necessary items to Properties → VC++ Directories and to the Linker → Input → Additional Dependencies. (I followed This Guide
The project runs fine and i am able to use the OpenCV library.
However I need to send the project to another person.
is there a way for me to send it and he will be able to run the project without having to install OpenCV and doing all the necessary setups?
If no, I will tell him to install OpenCV. However he will need to change the paths in the directories and dependencies to the path of his local pen CV. So is there a way to make the path relative and not absolute? instead of using C:/OpenCV/OpenCV2 I use something like %(OpenCVDirectory)/OpenCV2
Thank you very much for any help.