mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
fix ios build scripts after sharpyuv dep added
in:
d55d447c
Make libwebp depend on libsharpyuv.
Change-Id: I8efa679686b792da4cedf23f580152fecfe42275
This commit is contained in:
parent
d0d2292e1a
commit
c3d0c2d7d8
@ -133,10 +133,9 @@ for PLATFORM in ${PLATFORMS}; do
|
||||
CFLAGS="${CFLAGS}"
|
||||
set +x
|
||||
|
||||
# run make only in the src/ directory to create libwebp.a/libwebpdecoder.a
|
||||
cd src/
|
||||
make V=0
|
||||
make install
|
||||
# Build only the libraries, skip the examples.
|
||||
make V=0 -C sharpyuv
|
||||
make V=0 -C src install
|
||||
|
||||
LIBLIST+=" ${ROOTDIR}/lib/libwebp.a"
|
||||
DECLIBLIST+=" ${ROOTDIR}/lib/libwebpdecoder.a"
|
||||
@ -144,7 +143,6 @@ for PLATFORM in ${PLATFORMS}; do
|
||||
DEMUXLIBLIST+=" ${ROOTDIR}/lib/libwebpdemux.a"
|
||||
|
||||
make clean
|
||||
cd ..
|
||||
|
||||
export PATH=${OLDPATH}
|
||||
done
|
||||
|
@ -186,10 +186,9 @@ for (( i = 0; i < $NUM_PLATFORMS; ++i )); do
|
||||
CFLAGS="${CFLAGS}"
|
||||
set +x
|
||||
|
||||
# run make only in the src/ directory to create libwebp.a/libwebpdecoder.a
|
||||
cd src/
|
||||
make V=0
|
||||
make install
|
||||
# Build only the libraries, skip the examples.
|
||||
make V=0 -C sharpyuv
|
||||
make V=0 -C src install
|
||||
|
||||
LIBLIST+=("${ROOTDIR}/lib/libwebp.a")
|
||||
DECLIBLIST+=("${ROOTDIR}/lib/libwebpdecoder.a")
|
||||
@ -197,17 +196,16 @@ for (( i = 0; i < $NUM_PLATFORMS; ++i )); do
|
||||
DEMUXLIBLIST+=("${ROOTDIR}/lib/libwebpdemux.a")
|
||||
# xcodebuild requires a directory for the -headers option, these will match
|
||||
# for all builds.
|
||||
make install-data DESTDIR="${ROOTDIR}/lib-headers"
|
||||
make install-commonHEADERS DESTDIR="${ROOTDIR}/dec-headers"
|
||||
make -C demux install-data DESTDIR="${ROOTDIR}/demux-headers"
|
||||
make -C mux install-data DESTDIR="${ROOTDIR}/mux-headers"
|
||||
make -C src install-data DESTDIR="${ROOTDIR}/lib-headers"
|
||||
make -C src install-commonHEADERS DESTDIR="${ROOTDIR}/dec-headers"
|
||||
make -C src/demux install-data DESTDIR="${ROOTDIR}/demux-headers"
|
||||
make -C src/mux install-data DESTDIR="${ROOTDIR}/mux-headers"
|
||||
LIB_HEADERS="${ROOTDIR}/lib-headers/${ROOTDIR}/include/webp"
|
||||
DEC_HEADERS="${ROOTDIR}/dec-headers/${ROOTDIR}/include/webp"
|
||||
DEMUX_HEADERS="${ROOTDIR}/demux-headers/${ROOTDIR}/include/webp"
|
||||
MUX_HEADERS="${ROOTDIR}/mux-headers/${ROOTDIR}/include/webp"
|
||||
|
||||
make distclean
|
||||
cd ..
|
||||
|
||||
export PATH=${OLDPATH}
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user