7
FLECS_TAG="v2.2.0" # Flecs version.
11
echo "Getting dependencies."
14
mkdir -p ./subprojects/
17
if [ ! -d ./subprojects/flecs ]
19
git clone --branch $FLECS_TAG\
20
https://github.com/SanderMertens/flecs \
23
cd ./subprojects/flecs
24
FLECS_BRANCH=$(git describe --tags)
25
FLECS_REV=$(git log --pretty=format:'%h' -n 1)
26
echo "FLECS ($FLECS_BRANCH, $FLECS_REV) already got."
32
echo "Done Getting Depenecies."