- now use : ./update.sh osx release x86_64 or ./update.sh osx release universal by default, it is universal.
7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
git submodule update --init --recursive
|
|
cd src/godot-cpp
|
|
scons platform=$1 target=$2 macos_arch=$3 generate_bindings=yes
|
|
cd ../..
|
|
scons platform=$1 target=$2 macos_arch=$3
|