File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
# Useful if you willing to stop on first error, also prints what is executed.
4
4
# set -ex
5
5
6
- BUILDIR =" ${BUILDIR :- build} " # Default build dir.
6
+ BUILDDIR =" ${BUILDDIR :- build} " # Default build dir.
7
7
8
8
# Define target platforms, feel free to comment out if you does not require some of it,
9
9
# or you can call this script with plaforms list you willing to build on the command line.
@@ -34,12 +34,12 @@ G="${G:-}"
34
34
[ -z " ${G} " ] && hash ninja > /dev/null 2>&1 && G=" Ninja"
35
35
[ ! -z " ${G} " ] && export CMAKE_GENERATOR=" ${G} "
36
36
37
- rm -rf ${BUILDIR }
38
- mkdir -p ${BUILDIR }
37
+ rm -rf ${BUILDDIR }
38
+ mkdir -p ${BUILDDIR }
39
39
40
40
# Build platforms one by one.
41
41
for name in " ${PLATFORMS[@]} " ; do
42
- P=" ${BUILDIR } /$name "
42
+ P=" ${BUILDDIR } /$name "
43
43
mkdir -p " ${P} "
44
44
case " ${name} " in
45
45
* ) # Build native library.
You can’t perform that action at this time.
0 commit comments