Components: Vulkan, OpenGL, Framework
VK-GL-CTS public issue: 108
Change-Id: I6172080e4c025b6ad671ca9c33e08f6fdf8ded6a
add_subdirectory(external/spirv-tools)
# spirv-headers
-include_directories(external/spirv-headers/src/include)
+set(SPIRV_INCLUDE_PATH "${PROJECT_SOURCE_DIR}/external/spirv-headers/src/include")
+if (NOT EXISTS ${SPIRV_INCLUDE_PATH})
+ message(FATAL_ERROR "SPIR-V headers not found, please run external/fetch_sources.py")
+endif()
+include_directories(${SPIRV_INCLUDE_PATH})
include_directories(${PNG_INCLUDE_PATH})
### Building the Tests
-To build the framework, you need first to download sources for zlib, libpng.
+To build the framework, you need first to download sources for zlib, libpng, glslang,
+spirv-headers, and spirv-tools.
To download sources, run:
------------
To build dEQP, you need first to download sources for zlib, libpng, glslang,
-and spirv-tools.
+spirv-headers, and spirv-tools.
To download sources, run: