moltenvk/Scripts/package_docs.sh
Bill Hollings 025259426c Refactor the build environment.
Support creation of static library and build framework and dynamic library from it.
Add Makefile to better support command line or script building integration.
Update demos to each use one of framework, static library, and dynamic library.
Refactor and rename the build scripts.
Refactor and rename the Xcode Schemes.
Update build and runtime documentation.
Update What's New document.
2018-10-30 23:16:12 -04:00

11 lines
234 B
Bash
Executable File

#!/bin/bash
set -e
# Package folder
export MVK_PKG_CONFIG_PATH="${PROJECT_DIR}/Package/${CONFIGURATION}"
# Copy the docs.
cp -a "${PROJECT_DIR}/Docs" "${MVK_PKG_CONFIG_PATH}"
cp -a "${PROJECT_DIR}/LICENSE" "${MVK_PKG_CONFIG_PATH}"