mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 17:50:42 +02:00
This should be a no-op, besides generating less build warnings, since: "CMake 3.11 and above prefer to choose GLVND libraries." And 3.11 is a few years old at this point
11 lines
256 B
CMake
11 lines
256 B
CMake
set(TARGET_NAME gpu-gl)
|
|
setup_hifi_library(Concurrent)
|
|
link_hifi_libraries(shared gl gpu gpu-gl-common shaders)
|
|
if (UNIX)
|
|
target_link_libraries(${TARGET_NAME} pthread)
|
|
endif(UNIX)
|
|
GroupSources("src")
|
|
|
|
set(OpenGL_GL_PREFERENCE "GLVND")
|
|
target_opengl()
|
|
|