mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Build native library
This commit is contained in:
parent
0c4dd1f9d7
commit
19b9496e9d
2 changed files with 10 additions and 0 deletions
|
@ -38,6 +38,13 @@ jobs:
|
||||||
inputs:
|
inputs:
|
||||||
provProfileSecureFile: 'Uno_Calculator.mobileprovision'
|
provProfileSecureFile: 'Uno_Calculator.mobileprovision'
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
cd $(build.sourcesdirectory)/src/CalcManager
|
||||||
|
chmod +x build_ios.sh
|
||||||
|
./build_ios.sh
|
||||||
|
|
||||||
|
displayName: Build native CalcManager
|
||||||
|
|
||||||
- task: MSBuild@1
|
- task: MSBuild@1
|
||||||
inputs:
|
inputs:
|
||||||
solution: '$(build.sourcesdirectory)/src/Calculator.iOS/Calculator.iOS.csproj'
|
solution: '$(build.sourcesdirectory)/src/Calculator.iOS/Calculator.iOS.csproj'
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
xcrun -sdk iphoneos clang \
|
xcrun -sdk iphoneos clang \
|
||||||
-x c++ \
|
-x c++ \
|
||||||
-arch arm64 \
|
-arch arm64 \
|
||||||
|
-miphoneos-version-min=10.0 \
|
||||||
-std=c++1z \
|
-std=c++1z \
|
||||||
-stdlib=libc++ \
|
-stdlib=libc++ \
|
||||||
-c \
|
-c \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue