16 lines
197 B
Plaintext
Executable File
16 lines
197 B
Plaintext
Executable File
set -x
|
|
|
|
mkdir -p sdk/include
|
|
|
|
LIB=tinygltf
|
|
|
|
mkdir $LIB
|
|
pushd $LIB
|
|
git clone --depth 1 https://github.com/syoyo/tinygltf --branch v2.9.5
|
|
popd
|
|
|
|
pushd sdk/include
|
|
ln -fs ../../$LIB/tinygltf
|
|
popd
|
|
|