Commit f0928b3f by John Kessenich

Build: Pin googletest to a version that works with visual studio 2013.

parent 25ed3fce
...@@ -31,8 +31,11 @@ matrix: ...@@ -31,8 +31,11 @@ matrix:
# scripts that run after cloning repository # scripts that run after cloning repository
install: install:
- git clone https://github.com/google/googletest.git External/googletest
- C:/Python27/python.exe update_glslang_sources.py - C:/Python27/python.exe update_glslang_sources.py
- git clone https://github.com/google/googletest.git External/googletest
- cd External/googletest
- git checkout 440527a61e1c91188195f7de212c63c77e8f0a45
- cd ../..
build: build:
parallel: true # enable MSBuild parallel builds parallel: true # enable MSBuild parallel builds
......
...@@ -84,6 +84,15 @@ cd <the directory glslang was cloned to, "External" will be a subdirectory> ...@@ -84,6 +84,15 @@ cd <the directory glslang was cloned to, "External" will be a subdirectory>
git clone https://github.com/google/googletest.git External/googletest git clone https://github.com/google/googletest.git External/googletest
``` ```
If you want to use googletest with Visual Studio 2013, you also need to check out an older version:
```bash
# to use googletest with Visual Studio 2013
cd External/googletest
git checkout 440527a61e1c91188195f7de212c63c77e8f0a45
cd ../..
```
If you wish to assure that SPIR-V generated from HLSL is legal for Vulkan, If you wish to assure that SPIR-V generated from HLSL is legal for Vulkan,
or wish to invoke -Os to reduce SPIR-V size from HLSL or GLSL, install or wish to invoke -Os to reduce SPIR-V size from HLSL or GLSL, install
spirv-tools with this: spirv-tools with this:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment