docs: Update build.md for glslang location
authorMark Lobodzinski <mark@lunarg.com>
Wed, 16 May 2018 20:01:01 +0000 (14:01 -0600)
committerMark Lobodzinski <mark@lunarg.com>
Fri, 18 May 2018 14:46:18 +0000 (08:46 -0600)
BUILD.md

index 23c8432..97d1ddd 100644 (file)
--- a/BUILD.md
+++ b/BUILD.md
@@ -56,70 +56,39 @@ Windows 7+ with the following software packages:
   - Building the cube and vulkaninfo applications require linking to the Vulkan Loader Library (vulkan-1.dll).
     Locating the library for this repo can be done in two different ways:
       -  The Vulkan SDK can be installed. In this case, cmake should be able to locate the loader repo through the VulkanSDK
-         environment variable
+         environment variable.
       -  The library can be built from the [Vulkan-Loader](https://github.com/KhronosGroup/Vulkan-Loader.git) repository.
          In this case, the following option should be used on the cmake command line:
              LOADER_REPO_ROOT=c:\absolute_path_to\Vulkan-Loader
          and use absolute (not relative) paths, like so:
              cmake -DLOADER_REPO_ROOT=c:\absolute_path_to\Vulkan-Loader ....
+- [glslang](https://github.com/KhronosGroup/glslang)
+  - By default, the build scripts will attempt to download the necessary components from the glslang repo.
+    However, if a specific version of this file is required, please see the [Custom glslang Version](#custom-glslang-version) section below.
 
 ### Windows Build - Microsoft Visual Studio
 
 1. Open a Developer Command Prompt for VS201x
-2. Change directory to `Vulkan-LoaderAndValidationLayers` -- the root of the cloned git repository
+2. Change directory to `Vulkan-Tools` -- the root of the cloned git repository
 3. Run 'git submodule update --init --recursive' -- this will download in-tree external dependencies
 4. Create a `build` directory, change into that directory, and run cmake
 
-For example, for VS2017 (generators for other versions are [specified here](#cmake-visual-studio-generators)):
+For example, assuming an SDK is installed, for VS2017 (generators for other versions are [specified here](#cmake-visual-studio-generators)):
+
+    cmake "Visual Studio 15 2017 Win64" ..
+
+If a specific version of the Loader is requred, specify the root of the loader repository, like so:
 
     cmake -DLOADER_REPO_ROOT=c:/absolute_path_to/Vulkan-Loader -G "Visual Studio 15 2017 Win64" ..
 
-This will create a Windows solution file named `VULKAN.sln` in the build directory.
+This will create a Windows solution file named `Vulkan-Tools.sln` in the build directory.
 
-Launch Visual Studio and open the "VULKAN.sln" solution file in the build folder.
+Launch Visual Studio and open the "Vulkan-Tools.sln" solution file in the build folder.
 You may select "Debug" or "Release" from the Solution Configurations drop-down list.
 Start a build by selecting the Build->Build Solution menu item.
 This solution copies the loader it built to each program's build directory
 to ensure that the program uses the loader built from this solution.
 
-### Windows Tests and Demos
-
-After making any changes to the repository, you should perform some quick sanity tests,
-including the run_all_tests Powershell script and the cube demo with validation enabled.
-
-To run the validation test script, open a Powershell Console,
-change to the build/tests directory, and run:
-
-For Release builds:
-
-    .\run_all_tests.ps1
-
-For Debug builds:
-
-    .\run_all_tests.ps1 -Debug
-
-This script will run the following tests:
-
-- `vk_loader_validation_tests`:
-  Vulkan loader handle wrapping, allocation callback, and loader/layer interface tests
-- `vk_layer_validation_tests`:
-  Test Vulkan validation layers
-- `vkvalidatelayerdoc`:
-  Tests that validation database is up-to-date and is synchronized with the validation source code
-
-To run the Cube demo with validation in a Debug build configuration:
-
-- In the MSVC solution explorer, right-click on the `cube` project and select
- `Set As Startup Project`
-- Right click on cube again, select properties->Debugging->Command Arguments, change to
- `--validate`, and save
-- From the main menu, select Debug->Start Debugging, or from the toolbar click
- `Local Windows Debugger`
-
-Other applications that can be found in the Vulkan-Tools repository are:
-
-- `vulkaninfo`: Report GPU properties
-
 ### Windows Notes
 
 #### CMake Visual Studio Generators
@@ -145,6 +114,10 @@ It should be straightforward to adapt this repository to other Linux distributio
 
     sudo apt-get install git cmake build-essential libx11-xcb-dev libxkbcommon-dev libmirclient-dev libwayland-dev libxrandr-dev
 
+- [glslang](https://github.com/KhronosGroup/glslang)
+  - By default, the build scripts will attempt to download the necessary components from the glslang repo.
+    However, if a specific version of this file is required, please see the [Custom glslang Version](#custom-glslang-version) section below.
+
 Vulkan Loader Library
   - Building the cube and vulkaninfo applications require linking to the Vulkan Loader Library (libvulkan-1.so).
       - The following option should be used on the cmake command line to specify a vulkan loader library:
@@ -164,6 +137,9 @@ See **Loader and Validation Layer Dependencies** for more information and other
 
         mkdir build
         cd build
+        # If an SDK is installed and the setup-env.sh script has been run,
+        cmake -DCMAKE_BUILD_TYPE=Debug ..
+        # Else if a specific version of the loader is desired, indicate the root of the loader repository like so:
         cmake -DLOADER_REPO_ROOT=/absolute_path_to/Vulkan-Loader -DCMAKE_BUILD_TYPE=Debug ..
 
 4. Run `make -j8` to begin the build
@@ -430,6 +406,10 @@ Setup Homebrew and components
 
       brew install cmake python python3 git
 
+- [glslang](https://github.com/KhronosGroup/glslang)
+  - By default, the build scripts will attempt to download the necessary components from the glslang repo.
+    However, if a specific version of this file is required, please see the [Custom glslang Version](#custom-glslang-version) section below.
+
 ### Clone the Repository
 
 Clone the Vulkan-LoaderAndValidationLayers repository:
@@ -554,24 +534,22 @@ build files for one to many targets concurrently.
 Alternatively, when invoking CMake, use the `-G "Codeblocks - Ninja"` option to generate Ninja build
 files to be used as project files for QtCreator
 
-- Open, configure, and build the glslang CMakeList.txt files. Note that building the glslang
-  project will provide access to spirv-tools and spirv-headers
-- Then do the same with the Vulkan-LoaderAndValidationLayers CMakeList.txt file
+- Open, configure, and build the Vulkan-Tools CMakeList.txt file
 - In order to debug with QtCreator, a
   [Microsoft WDK: eg WDK 10](http://go.microsoft.com/fwlink/p/?LinkId=526733) is required.
 
 Note that installing the WDK breaks the MSVC vcvarsall.bat build scripts provided by MSVC,
 requiring that the LIB, INCLUDE, and PATHenv variables be set to the WDK paths by some other means
 
-## Vulkan-Tools Dependencies
+## Custom glslang version
 
-The glslang repository is required to build and run Vulkan Tools components.
-It is not a git sub-module of Vulkan-Tools, but glslang components are required to build
-the cube and vulkaninfo applications.
+The Glslang repository is not a git sub-module of Vulkan-Tools, but glslang components are required to build
+the cube and vulkaninfo applications. By default, the cmake scripts will download the required
+components into the repo 'glslang' directory.
 
-If an existing glslang repository installation is unavailable, do the following steps:
+If a specific version of the glslang components is desired, perform the following steps:
 
-1) clone the repository:
+1) clone the glslang repository:
 
     `git clone https://github.com/KhronosGroup/glslang.git`