Use clang instead of libtool for building dynamic library from static library. Fix SDK issue when building dylib with Xcode 9 on Sierra. Add scripts to update submodules to latest versions. Update to latest versions of submodules. Remove Brenwill code signing IDs from Demo projects.
19 lines
398 B
Bash
Executable File
19 lines
398 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2017 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestAll - Updates to the latest versions of all submodules.
|
|
#
|
|
# Invokes the following scripts:
|
|
# getLatestVulkanSpec
|
|
# getLatestSPIRVTools
|
|
# getLatestglslang
|
|
# getLatestSPIRVCross
|
|
#
|
|
# macOS usage: ./getLatestAll
|
|
|
|
./getLatestVulkanSpec
|
|
./getLatestSPIRVTools
|
|
./getLatestglslang
|
|
./getLatestSPIRVCross
|