Add LunarG demo app repository as a submodule. Add LunarG demo config to makeAll script. Rename Demos/README_MoltenVK_Demos.md to Demos/README.md. Do not copy Demos folder to MoltenVK runtime distribution. Do not copy ThirdPartyConfig.md to MoltenVK runtime distribution. Add cmake as a dependency in README.md.
23 lines
498 B
Bash
Executable File
23 lines
498 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestAll - Updates to the latest versions of all submodules.
|
|
#
|
|
# Invokes the following scripts:
|
|
# getLatestVulkanSpec
|
|
# getLatestSPIRVTools
|
|
# getLatestglslang
|
|
# getLatestSPIRVCross
|
|
# getLatestVulkanLVL
|
|
# getLatestVulkanSamples
|
|
#
|
|
# macOS usage: ./getLatestAll
|
|
|
|
./getLatestVulkanSpec
|
|
./getLatestSPIRVTools
|
|
./getLatestglslang
|
|
./getLatestSPIRVCross
|
|
./getLatestVulkanLVL
|
|
./getLatestVulkanSamples
|