Compare commits
No commits in common. "b7079ec3eb5851954c3124b08ae0d9a609b3c594" and "4ec69cba48de2963ea86b17e994a55e06579ccd7" have entirely different histories.
b7079ec3eb
...
4ec69cba48
5
build.sh
5
build.sh
|
@ -12,8 +12,13 @@ mkdir -p out/i686
|
||||||
|
|
||||||
if [[ $platform == 'Linux' ]]; then
|
if [[ $platform == 'Linux' ]]; then
|
||||||
cargo build --release --target x86_64-unknown-linux-gnu
|
cargo build --release --target x86_64-unknown-linux-gnu
|
||||||
|
cargo build --release --target x86_64-pc-windows-gnu
|
||||||
|
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-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
|
||||||
elif [[ $platform == 'Darwin' ]]; then
|
elif [[ $platform == 'Darwin' ]]; then
|
||||||
cargo build --release --target x86_64-apple-darwin
|
cargo build --release --target x86_64-apple-darwin
|
||||||
cargo build --release --target aarch64-apple-darwin
|
cargo build --release --target aarch64-apple-darwin
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 18ea974db75674450963e3fc34366396fa38f2a0
|
Subproject commit 70384e56bb43b0f037bc2632084a6509016acea9
|
Reference in New Issue