Skip to content
Snippets Groups Projects
Commit 70728d12 authored by Peter Esser's avatar Peter Esser
Browse files

Cmake fix

target_link_directories is not defined on previous CMake versions (used on
the build machines here). Replaced with link_directories instead.
parent 00461941
No related branches found
No related tags found
1 merge request!1Fix lava-vr under windows
......@@ -22,7 +22,7 @@ list(APPEND lava_pack_shaders
set(lava_pack_shaders "${lava_pack_shaders}" CACHE INTERNAL "lava_pack_shaders")
find_package(ZLIB REQUIRED)
target_link_directories(lava-vr PUBLIC ${ZLIB_INCLUDE_DIRS})
link_directories(${ZLIB_INCLUDE_DIRS})
target_link_libraries(lava-vr PUBLIC ${ZLIB_LIBRARIES})
target_include_directories(lava-vr PUBLIC ./src)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment