You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blink currently only detects .obj and .cpp files that are part of the main project.
I have a project that includes multiple smaller static linked libraries.
These get detected by pdb.read_object_files(...)
But the path to them is just some relative path., like x64\Debug\StaticLib1.obj
Is support for static libraries something that can be reasonably implemented with a moderate amount of work?
Currently, I am considering a proactive approach, providing Blink with all the necessary information without the need to extract it from the pdb.
The text was updated successfully, but these errors were encountered:
Blink currently only detects .obj and .cpp files that are part of the main project.
I have a project that includes multiple smaller static linked libraries.
These get detected by
pdb.read_object_files(...)
But the path to them is just some relative path., like
x64\Debug\StaticLib1.obj
Is support for static libraries something that can be reasonably implemented with a moderate amount of work?
Currently, I am considering a proactive approach, providing Blink with all the necessary information without the need to extract it from the pdb.
The text was updated successfully, but these errors were encountered: