Skip to content

Commit

Permalink
Fix build break on linux in Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Mar 3, 2024
1 parent 4124799 commit f017ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Nerdbank.Zcash/NativeBindings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
</RustBinary>

<!-- Android -->
<RustBinary Condition="'$(Platform)'=='AnyCPU' or ('$(Platform)'=='arm64' and $([MSBuild]::IsOsPlatform('Linux')))" Include="$(RustOutputDirBase)aarch64-linux-android/$(RustConfiguration)/libnerdbank_zcash_rust.so">
<RustBinary Condition="'$(Platform)'=='AnyCPU'" Include="$(RustOutputDirBase)aarch64-linux-android/$(RustConfiguration)/libnerdbank_zcash_rust.so">
<PackagePath>runtimes/android-arm64/native/</PackagePath>
</RustBinary>
<RustBinary Condition="'$(Platform)'=='AnyCPU' or ('$(Platform)'=='x64' and $([MSBuild]::IsOsPlatform('Linux')))" Include="$(RustOutputDirBase)x86_64-linux-android/$(RustConfiguration)/libnerdbank_zcash_rust.so">
<RustBinary Condition="'$(Platform)'=='AnyCPU'" Include="$(RustOutputDirBase)x86_64-linux-android/$(RustConfiguration)/libnerdbank_zcash_rust.so">
<PackagePath>runtimes/android-x64/native/</PackagePath>
</RustBinary>

Expand Down

0 comments on commit f017ae3

Please sign in to comment.