mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2025-01-18 16:04:21 +00:00
af6d8282cb
* Move dependencies in a folder * Windows * MacOS
14 lines
708 B
Bash
Executable File
14 lines
708 B
Bash
Executable File
#!/usr/bin/env bash
|
|
SRC_LIBPNG="$(find ../src/thirdparty/libpng/ -name '*.c')"
|
|
SRC_ZLIB="$(find ../sr/thirdpartyc/zlib/ -name '*.c')"
|
|
SRC_ZVBI="$(find ../sr/thirdpartyc/zvbi/ -name '*.c')"
|
|
SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')"
|
|
SRC_GPAC="$(find ../sr/thirdpartyc/gpacmp4/ -name '*.c')"
|
|
SRC_HASH="$(find ../sr/thirdpartyc/lib_hash/ -name '*.c')"
|
|
SRC_PROTOBUF="$(find ../src/thirdparty/protobuf-c/ -name '*.c')"
|
|
SRC_UTF8PROC="../src/utf8proc/utf8proc.c"
|
|
API_WRAPPERS="$(find ../src/wrappers/ -name '*.c')"
|
|
BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi_wrap.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC $API_WRAPPERS"
|
|
|
|
python setup.py $BLD_SOURCES
|