Skip to content

Commit af33dbe

Browse files
authored
Merge pull request #375 from corydolphin/patch/answers-modulemap
Updates modulemaps to describe framework dependencies
2 parents bc1960a + a0ffbfc commit af33dbe

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Branch-TestBed/module.modulemap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
framework module Branch {
22
umbrella header "BranchSDK.h"
3-
header "Branch.h"
43

54
export *
65
module * { export * }
6+
7+
link framework "CoreTelephony"
8+
link framework "MobileCoreServices"
79
}
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
framework module Branch {
22
umbrella header "BranchSDK.h"
3-
header "Branch.h"
43

54
export *
65
module * { export * }
6+
7+
link framework "CoreTelephony"
8+
link framework "MobileCoreServices"
79
}

carthage-files/module.modulemap

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
framework module Branch {
2-
umbrella header "BranchSDK.h"
2+
umbrella header "BranchSDK.h"
33

4-
export *
5-
module * { export * }
4+
export *
5+
module * { export * }
6+
7+
link framework "CoreTelephony"
8+
link framework "MobileCoreServices"
69
}

0 commit comments

Comments
 (0)