Files
LXST/fetch_libs.sh
2025-11-24 15:28:32 +01:00

10 lines
292 B
Bash
Executable File

#!/bin/bash
TARGET_DIR="${1:-./lib/dev}"
mkdir -p "$TARGET_DIR"
echo "Copying native libraries to $TARGET_DIR..."
find ./build -name "filterlib*.*" -type f \( -name "*.so" -o -name "*.dll" -o -name "*.dylib" \) -exec cp {} "$TARGET_DIR/" \;
echo "Done. Copied files:"
ls -lh "$TARGET_DIR/"