mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-26 12:52:15 +00:00
2eb5fd26de
* Move wrappers and extracters inside src/ and update CMakeLists. * Reflect change in path across build scripts. * Remove redundant source file inclusion. * Always use supplied libpng.
15 lines
706 B
Bash
Executable File
15 lines
706 B
Bash
Executable File
#!/bin/bash
|
|
SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')"
|
|
SRC_ZLIB="$(find ../src/zlib/ -name '*.c')"
|
|
SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')"
|
|
SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')"
|
|
SRC_GPAC="$(find ../src/gpacmp4/ -name '*.c')"
|
|
SRC_HASH="$(find ../src/lib_hash/ -name '*.c')"
|
|
SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')"
|
|
SRC_UTF8PROC="../src/utf8proc/utf8proc.c"
|
|
API_WRAPPERS="$(find ../src/wrappers/ -name '*.c')"
|
|
API_EXTRACTORS="$(find ../src/extractors/ -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 $API_EXTRACTORS"
|
|
|
|
python setup.py $BLD_SOURCES
|