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
Either the library, or the downstream executable should instruct the linker that libraries like user32, kernel32 and shell32 are required. If not, you cannot actually link an executable together.
This may be avoided if instead openvr_api.dll was dynamically linked, as that responsibility falls from the linker at build time, down to the operating system at module load time!
But Since we statically link against openvr_api, we should satisfy its requirements...
For reference, here's a screenshot of a tool that shows runtime dependencies of DLL files. These are the DLLs required for all the imports from OpenVR
The text was updated successfully, but these errors were encountered:
Either the library, or the downstream executable should instruct the linker that libraries like
,user32
kernel32
andshell32
are required. If not, you cannot actually link an executable together.This may be avoided if instead openvr_api.dll was dynamically linked, as that responsibility falls from the linker at build time, down to the operating system at module load time!
But Since we statically link against openvr_api, we should satisfy its requirements...
For reference, here's a screenshot of a tool that shows runtime dependencies of DLL files. These are the DLLs required for all the imports from OpenVR
The text was updated successfully, but these errors were encountered: