Rename 'modules' directory to 'external'

Former-commit-id: 8d3eec465f
This commit is contained in:
Leroy Hopson 2020-09-23 17:29:33 +07:00
parent db6486e6f3
commit e59db03d11
6 changed files with 9 additions and 9 deletions

View file

@ -6,17 +6,17 @@ set -e
cd ${BASH_SOURCE%/*}
# Initialize godot-cpp
if [ ! -d "modules/godot-cpp/bin" ]
if [ ! -d "external/godot-cpp/bin" ]
then
cd modules/godot-cpp
cd external/godot-cpp
scons platform=linux generate_bindings=yes -j12
cd ../..
fi
# Build libtsm
if [ ! -f "modules/libtsm/build/src/tsm/libtsm.a" ]
if [ ! -f "external/libtsm/build/src/tsm/libtsm.a" ]
then
cd modules/libtsm
cd external/libtsm
mkdir -p build
cd build
cmake -DBUILD_SHARED_LIBS=n ..