This took alot of love to build. It is build off of the combo of the Vulkan Tutorial and Sample files from the vulkanHPP library. The VulkanHPP Library appears compatible with the GPL license as per it being the Apache 2 license.
12 lines
174 B
Bash
12 lines
174 B
Bash
#/bin/sh -e
|
|
|
|
SCRIPT_PATH="$(readlink -f "$0")"
|
|
SCRIPT_DIR="$(dirname "$SCRIPT_PATH")"
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
if [ -d "build/" ]; then
|
|
echo "Cleaning Build Dir"
|
|
rm -r build/
|
|
fi
|