I am currently re-working my game/rendering engine. I am doing it cross-platform so have switched to using a CMake build process. I have had no issues building GLFW or GLAD but ran into problems with openvr
It's a fairly basic build right now but I'm relatively new to it
add_subdirectory(lib/openvr)
add_subdirectory(lib/glfw)
add_subdirectory(lib/glad)
target_link_libraries(flux glad glfw openvr_api64)
This all worked fine, can include the headers etc but I get a lot of unresolved external errors
__imp_VR_GetGenericInterface
__imp_VR_IsInterfaceVersionValid
__imp_VR_InitInternal2
and so on...
I've looked at the CMakeLists file in the repo but couldn't find anything that I know of
https://github.com/ValveSoftware/openvr
Any input would be nice