Minor CMakeLists fix
1 unresolved thread
1 unresolved thread
The previous merge request did build under linux but not under windows. Hence, we have to provide absolute paths to link zlib instead of just the name.
Merge request reports
Activity
25 25 link_directories(${ZLIB_INCLUDE_DIRS}) 26 26 target_link_libraries(lava-vr PUBLIC ${ZLIB_LIBRARIES}) 27 27 28 target_include_directories(lava-vr PUBLIC ./src) 29 target_link_libraries(lava-vr PUBLIC lava lava-extras-openvr lava-extras-pipeline lava-extras-geometry lava-extras-pack lava-extras-imgui zlib) 28 target_include_directories(lava-vr PUBLIC ./src ${ZLIB_INCLUDE_DIRS}) 28d85d97 should fix this.
Please register or sign in to reply