This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues/pull-requests.
SkyHook-Native/build.sh

21 lines
483 B
Bash
Raw Normal View History

2022-11-03 19:22:12 +09:00
#!/bin/bash
set -x
mkdir -p out/x86_64
mkdir -p out/i686
# x86_64
cargo build --release --target x86_64-unknown-linux-gnu
# cargo build --release --target x86_64-apple-darwin
cargo build --release --target x86_64-pc-windows-gnu
# i686
cargo build --release --target i686-pc-windows-gnu
cp target/x86_64-unknown-linux-gnu/release/libskyhook.so out/x86_64
cp target/x86_64-pc-windows-gnu/release/skyhook.dll out/x86_64
cp target/i686-pc-windows-gnu/release/skyhook.dll out/i686