forked from expressvpn/lightway-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ios.yml
36 lines (32 loc) · 921 Bytes
/
ios.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--- # ceedling project file for iOS
:import:
- unix.yml
:release_build:
:output: libhelium.a
:dependencies:
:libraries:
- :name: WolfSSL
:source_path: third_party/wolfssl
:artifact_path: third_party/builds/wolfssl_ios
:fetch:
:method: :git
:source: $HE_WOLFSSL_SOURCE
:hash: $HE_WOLFSSL_COMMIT
:environment:
- MACOSX_DEPLOYMENT_TARGET=10.0
:build:
- autoreconf -i
- "cp ../../ios/autotools-ios-helper.sh ./autotools-ios-helper.sh"
- "./autotools-ios-helper.sh"
:artifacts:
:includes:
- include/**
:static_libraries:
# - platforms/iphoneos/lib/libwolfssl.a
# - platforms/iphonesimulator/lib/libwolfssl.a
# - platforms/macosx/lib/libwolfssl.a
- universal/libwolfssl.a
- macosx/libwolfssl.a
:environment:
- MACOSX_DEPLOYMENT_TARGET: 10.0
...