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.
13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestVulkanSamples - Updates to the latest version of VulkanSamples submodule.
|
|
#
|
|
# macOS usage: ./getLatestVulkanSamples
|
|
|
|
rm -rf VulkanSamples
|
|
git clone https://github.com/brenwill/VulkanSamples.git
|
|
|
|
./makeVulkanSamples
|