mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 00:42:46 +02:00
32 lines
1.7 KiB
CMake
32 lines
1.7 KiB
CMake
# This doesn't link properly, and it seems it's built against some older library
|
|
# not being in use anymore. At least some of the stuff in the test doesn't seem
|
|
# to match anything in the build tree. If built, it fails with:
|
|
|
|
# [ 91%] Linking CXX executable shaders-ShaderTests
|
|
# /usr/bin/ld: CMakeFiles/shaders-ShaderTests.dir/src/ShaderTests.cpp.o: in function `rebuildSource(shader::Dialect, shader::Variant, shader::Source const&)':
|
|
# /home/dale/git/vircadia/overte/tests/shaders/src/ShaderTests.cpp:354: undefined reference to `glslang::TShader::TShader(EShLanguage)'
|
|
# /usr/bin/ld: /home/dale/git/vircadia/overte/tests/shaders/src/ShaderTests.cpp:358: undefined reference to `glslang::TShader::setStrings(char const* const*, int)'
|
|
# /usr/bin/ld: /home/dale/git/vircadia/overte/tests/shaders/src/ShaderTests.cpp:417: undefined reference to `glslang::TShader::~TShader()'
|
|
# /usr/bin/ld: /home/dale/git/vircadia/overte/tests/shaders/src/ShaderTests.cpp:417: undefined reference to `glslang::TShader::~TShader()'
|
|
# collect2: error: ld returned 1 exit status
|
|
#
|
|
# So I've disabled the entire thing, but left the code around as a reference in case it can be fixed.
|
|
|
|
# Declare dependencies
|
|
#macro (setup_testcase_dependencies)
|
|
# # link in the shared libraries
|
|
# link_hifi_libraries(shared test-utils gpu shaders gl ${PLATFORM_GL_BACKEND})
|
|
# #target_spirv()
|
|
#
|
|
# find_package(spirv_cross_core REQUIRED)
|
|
# find_package(spirv_cross_reflect REQUIRED)
|
|
# find_package(spirv_cross_glsl REQUIRED)
|
|
# target_include_directories(${TARGET_NAME} PRIVATE $<TARGET_PROPERTY:spirv-cross-core,INTERFACE_INCLUDE_DIRECTORIES>)
|
|
# target_include_directories(${TARGET_NAME} PRIVATE $ENV{VULKAN_SDK}/Include)
|
|
#
|
|
#
|
|
# package_libraries_for_deployment()
|
|
#endmacro ()
|
|
#
|
|
#setup_hifi_testcase(Gui)
|
|
|