mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-04 05:44:53 +00:00
* replaced nanomsg with nanomsg_sys * feat: Share Module - squash commits * Share Module: Added Documentation * Share Module: Removed Sharing Service * Share: formatting issues * Share: failing CI * Share: failing CI * Share: Removed protobuf * Share Module: Update CHANGES.txt * Share Module: Update Cargo.lock * Share Module: Update CHANGES.txt * Share Module: Update Cargo.toml * Share Module: Update Cargo.toml
11 lines
495 B
Bash
Executable File
11 lines
495 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_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_UTF8PROC"
|
|
|
|
python setup.py $BLD_SOURCES
|