Build native library

This commit is contained in:
Jérôme Laban 2019-05-21 14:02:25 -04:00
commit 19b9496e9d
2 changed files with 10 additions and 0 deletions

View file

@ -38,6 +38,13 @@ jobs:
inputs:
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
inputs:
solution: '$(build.sourcesdirectory)/src/Calculator.iOS/Calculator.iOS.csproj'

View file

@ -1,6 +1,9 @@
#!/bin/bash
xcrun -sdk iphoneos clang \
-x c++ \
-arch arm64 \
-miphoneos-version-min=10.0 \
-std=c++1z \
-stdlib=libc++ \
-c \