mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-07-08 18:06:30 +00:00
* feat: unpack gpac * fix: linux ci * fix: mac build * fix: remove unused [no ci] * fix: ignore config.h [no ci] * temp commit, will drop this soon * fix: install gpac * fix: gpac * fix: formatting * fix: preproccessor directive * fix: comment display version for now * fix: display dlls code * fix: bundle vcruntime in hardsubx windows * fix: again * fix: erros in ci * fix: ci * fix: add vcruntime in additional dependencies * fix: try to copy vcruntime after build * fix: space in runtime library * fix: remove for now [no ci] * fix: things in vcxproj * fix: ci for leptonica sys * fix: docs * fix: copy dlls on post build event * fix: copy vcruntime after build
12 lines
574 B
Bash
Executable File
12 lines
574 B
Bash
Executable File
#!/usr/bin/env bash
|
|
SRC_LIBPNG="$(find ../src/thirdparty/libpng/ -name '*.c')"
|
|
SRC_ZLIB="$(find ../src/thirdparty/zlib/ -name '*.c')"
|
|
SRC_ZVBI="$(find ../src/thirdparty/zvbi/ -name '*.c')"
|
|
SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')"
|
|
SRC_HASH="$(find ../src/thirdparty/lib_hash/ -name '*.c')"
|
|
SRC_PROTOBUF="$(find ../src/thirdparty/protobuf-c/ -name '*.c')"
|
|
SRC_UTF8PROC="../src/utf8proc/utf8proc.c"
|
|
BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi_wrap.c $SRC_CCX $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC"
|
|
|
|
python setup.py $BLD_SOURCES
|