mirror of
https://github.com/markqvist/LXST.git
synced 2025-12-22 10:57:08 +00:00
10 lines
292 B
Bash
Executable File
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/" |