I want to transfer my project from QT Creator to Visual Studio.
My project is a C ++ dll library that is called from an exe file. I created a dynamic library project, transferred the code from .h and .cpp files and added to the solution an exe file that this library should use:
Launched - started. But at the breakpoints of the library cpp-file it says that there are no loaded symbols.
Looked at the settings:
- Character set - Use Unicode character set (tried to set multibyte - the same)
- Linker / Debug / Build debug information - chose DEBUG: FULL - so that for sure
- Below the item to create a program database file -
$(OutDir)$(TargetName).pdb- tried to specify the path in which the exe-file is located did not help
The pdb file is created and regularly lies in the directory with the dll, tried to copy it to the program folder. I tried to copy the program to a folder with dll and pdb. Also
On this I somehow stopped myself
Actually the question is: is it possible somehow in Visual C ++ to debug a library through the launch of a program that uses this library like qt creator or is it an unbeatable problem?
