I have a main project and which there I implement some classes and functionality and also a main.cpp
to run everything.
Now I try to add another project to test my main project, so I create another project in the same solution which will be my Unit Test Catch 2 for my original project.
Now I try to reference my original project inside my test project - didn't work. I also try to add in linker input dependencies my whole original folders, the debug folder and the cpp folder - didn't work.
Finally I understand that I try to search for lib file of the Original project to refer inside my Test project but cannot find lib file. Is there another way to link between the two projects so I can call classes and functions inside my Test project and test them?