I have a solution with two projects: myProject , DLL and myProject_Tester , the Win32 console application that I use to debug the DLL.
When I create a solution, I get this error message in the error list:
error LNK1104: cannot open file 'U:\Software Development\c++ projects\myProject\Debug\myProject.lib' U:\Software Development\c++ projects\myProject\myProject_Tester\LINK myProject_Tester
I added myProject as a reference in myProject_Tester , but when I edit myProject_Tester.cpp and I try to enter #include "myProjectDLL.h" (the header file for myProject ) to include the header file, myProjectDLL.h does not appear in Intellisense.
I also added U:\Software Development\c++ projects\myProject\Debug in the Additional Include Directories section for myProject_Tester .
Is there somewhere else in the properties for myProject_Tester that I need to configure something to associate it with myProject ?
EDIT: Here is the header file that I use for myProjectDLL.h:
//myProjectDLL.h
source share