Mention the steps to pull dependencies when building in README.
authorLei Zhang <antiagainst@google.com>
Thu, 7 Jul 2016 19:04:06 +0000 (15:04 -0400)
committerLei Zhang <antiagainst@google.com>
Thu, 7 Jul 2016 19:07:31 +0000 (15:07 -0400)
README.md

index b8fdd0f..41e1ce9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -102,12 +102,15 @@ In particular, googletest must be newer than version 1.7.0.
 ## Build
 
 The project uses [CMake][cmake] to generate platform-specific build
-configurations. After checking out [SPIR-V headers][spirv-headers] and
-[googletest][googletest] into `external/`. issue the following commands:
+configurations. Assume that `<spirv-dir>` is the root directory of the checked
+out code:
 
 ```
-mkdir <spirv-dir>/build
-cd <spirv-dir>/build
+cd <spirv-dir>
+git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
+git clone https://github.com/google/googletest.git external/googletest # optional
+
+mkdir build && cd build
 cmake [-G <platform-generator>] <spirv-dir>
 ```