fix windows build of render-utils-test

This commit is contained in:
Andrew Meadows 2017-03-27 16:49:43 -07:00
parent 92b41d7a38
commit 5fc1e97166

View file

@ -1,7 +1,9 @@
set(TARGET_NAME gpu-gl)
setup_hifi_library()
link_hifi_libraries(shared gl gpu)
target_link_libraries(${TARGET_NAME} pthread)
if (UNIX)
target_link_libraries(${TARGET_NAME} pthread)
endif(UNIX)
GroupSources("src")
target_opengl()