mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 10:32:19 +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
19 lines
669 B
CMake
19 lines
669 B
CMake
set(TARGET_NAME display-plugins)
|
|
setup_hifi_library(Gui)
|
|
link_hifi_libraries(shared shaders plugins ui-plugins gl ui render-utils ${PLATFORM_GL_BACKEND})
|
|
include_hifi_library_headers(gpu)
|
|
include_hifi_library_headers(material-networking)
|
|
include_hifi_library_headers(model-networking)
|
|
include_hifi_library_headers(networking)
|
|
include_hifi_library_headers(graphics)
|
|
include_hifi_library_headers(hfm)
|
|
include_hifi_library_headers(fbx)
|
|
include_hifi_library_headers(image)
|
|
include_hifi_library_headers(ktx)
|
|
include_hifi_library_headers(render)
|
|
include_hifi_library_headers(procedural)
|
|
|
|
set(OpenGL_GL_PREFERENCE "GLVND")
|
|
target_opengl()
|
|
|
|
GroupSources("src/display-plugins")
|