How to use other projects nuget packages as DLL C++

Viewed 49

I made my own Dll project, which includes a standard libraries like: sstream string codecvt fstream iostream string etc. (non-3-party libraries)

and opencv4.2 (3-party library) which was installed through "Manage Nuget Packages" in Visual Studio.

After building it (creating the Dll and lib files) I linked to it from project, which is made to test the functionality of the dll. The project can't find opencv's libraries.

So I'm curious how to tell the testing project to include the nuget packages from Dll's project.

Note that installing opencv again through "Manage Nuget Packages" to testing Project helps, but it is not an option in my case.

0 Answers
Related