-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDCoreKit.modulemap
More file actions
44 lines (39 loc) · 927 Bytes
/
DCoreKit.modulemap
File metadata and controls
44 lines (39 loc) · 927 Bytes
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
37
38
39
40
41
42
43
44
framework module DCoreKit {
umbrella header "DCoreKit.h"
requires objc
export *
module * { export * }
explicit module COpenSSL [system] {
header "shim.h"
header "aes.h"
header "asn1_mac.h"
header "asn1t.h"
header "blowfish.h"
header "camellia.h"
header "cast.h"
header "cmac.h"
header "cms.h"
header "conf_api.h"
header "dso.h"
header "ebcdic.h"
header "krb5_asn.h"
header "mdc2.h"
header "modes.h"
header "ocsp.h"
header "rc2.h"
header "rc4.h"
header "seed.h"
header "ts.h"
header "txt_db.h"
header "whrlpool.h"
link "ssl"
link "crypto"
export *
}
explicit module secp256k1 {
header "secp256k1.h"
header "secp256k1_recovery.h"
link "secp256k1"
export *
}
}