Use native tribufu sdk

This commit is contained in:
2024-08-25 16:29:26 -03:00
parent 60126abfa5
commit 5eb1e81f19
32 changed files with 98 additions and 947 deletions

View File

@ -1,8 +1,6 @@
#!/usr/bin/env pwsh
echo "Building for windows-x86_64"
cargo build --package tribufu-native --target x86_64-pc-windows-msvc
New-Item "bin/windows/x86_64" -ItemType Directory -Force
Remove-Item -Path "bin/windows/x86_64/*" -Force
Copy-Item -Path "target/x86_64-pc-windows-msvc/debug/tribufu_native.lib" -Destination "bin/windows/x86_64" -Force
New-Item "bin/windows-x86_64" -ItemType Directory -Force
Remove-Item -Path "bin/windows-x86_64/*" -Force
msbuild /p:Configuration="debug" /p:Platform="windows-x86_64"