Fix CMakeLists.txt for test building. Add missing dependencies, deal with GLVND

This commit is contained in:
Dale Glass 2022-06-06 23:16:23 +02:00
parent b3bd6c7ac8
commit e23c162d97
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# Declare dependencies
macro (setup_testcase_dependencies)
# link in the shared libraries
link_hifi_libraries(shared animation gpu hfm graphics networking test-utils image)
link_hifi_libraries(shared animation gpu hfm model-serializers graphics networking test-utils image)
package_libraries_for_deployment()
endmacro ()

View file

@ -1,7 +1,7 @@
# Declare dependencies
macro (setup_testcase_dependencies)
# link in the shared libraries
link_hifi_libraries(shared test-utils ktx gpu gl ${PLATFORM_GL_BACKEND})
link_hifi_libraries(shared test-utils ktx gpu gl shaders networking ${PLATFORM_GL_BACKEND})
package_libraries_for_deployment()
target_opengl()
target_zlib()
@ -10,5 +10,5 @@ macro (setup_testcase_dependencies)
add_dependency_external_projects(wasapi)
endif ()
endmacro ()
set(OpenGL_GL_PREFERENCE "GLVND")
setup_hifi_testcase()

View file

@ -1,7 +1,7 @@
# Declare dependencies
macro (setup_testcase_dependencies)
link_hifi_libraries(shared workload)
link_hifi_libraries(shared workload shaders)
package_libraries_for_deployment()
endmacro ()