Skip to content

Commit

Permalink
Adding YapDatabaseCloudCore to Carthage builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiehanson committed Nov 4, 2017
1 parent bf499db commit 0cd8bf6
Show file tree
Hide file tree
Showing 8 changed files with 707 additions and 20 deletions.
16 changes: 15 additions & 1 deletion Framework/Mac/module.modulemap
Expand Up @@ -23,7 +23,7 @@ framework module YapDatabase {
}

// Extension: View

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewOptions.h"
Expand Down Expand Up @@ -158,4 +158,18 @@ framework module YapDatabase {
header "YapDatabaseCrossProcessNotificationConnection.h"
header "YapDatabaseCrossProcessNotificationTransaction.h"
}

// Extension: CloudCore

explicit module YapDatabaseCloudCore {
header "YapDatabaseCloudCore.h"
header "YapDatabaseCloudCoreOptions.h"
header "YapDatabaseCloudCoreConnection.h"
header "YapDatabaseCloudCoreTransaction.h"
header "YapManyToManyCache.h"
header "YapDatabaseCloudCoreOperation.h"
header "YapDatabaseCloudCorePipelineDelegate.h"
header "YapDatabaseCloudCorePipeline.h"
header "YapDatabaseCloudCoreGraph.h"
}
}
16 changes: 15 additions & 1 deletion Framework/iOS/module.modulemap
Expand Up @@ -68,7 +68,7 @@ framework module YapDatabase {
}

// Extension: SecondaryIndex

explicit module YapDatabaseSecondaryIndex {
header "YapDatabaseSecondaryIndex.h"
header "YapDatabaseSecondaryIndexSetup.h"
Expand Down Expand Up @@ -158,4 +158,18 @@ framework module YapDatabase {
header "YapDatabaseCrossProcessNotificationConnection.h"
header "YapDatabaseCrossProcessNotificationTransaction.h"
}

// Extension: CloudCore

explicit module YapDatabaseCloudCore {
header "YapDatabaseCloudCore.h"
header "YapDatabaseCloudCoreOptions.h"
header "YapDatabaseCloudCoreConnection.h"
header "YapDatabaseCloudCoreTransaction.h"
header "YapManyToManyCache.h"
header "YapDatabaseCloudCoreOperation.h"
header "YapDatabaseCloudCorePipelineDelegate.h"
header "YapDatabaseCloudCorePipeline.h"
header "YapDatabaseCloudCoreGraph.h"
}
}
32 changes: 23 additions & 9 deletions Framework/tvOS/module.modulemap
Expand Up @@ -23,7 +23,7 @@ framework module YapDatabase {
}

// Extension: View

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewOptions.h"
Expand All @@ -34,16 +34,16 @@ framework module YapDatabase {
header "YapDatabaseViewRangeOptions.h"
}

// Extension: AutoView
// Extension: AutoView

explicit module YapDatabaseAutoView {
header "YapDatabaseViewTypes.h"
header "YapDatabaseAutoView.h"
header "YapDatabaseAutoViewConnection.h"
header "YapDatabaseAutoViewTransaction.h"
explicit module YapDatabaseAutoView {
header "YapDatabaseViewTypes.h"
header "YapDatabaseAutoView.h"
header "YapDatabaseAutoViewConnection.h"
header "YapDatabaseAutoViewTransaction.h"

export YapDatabaseView
}
export YapDatabaseView
}

// Extension: FilteredView

Expand Down Expand Up @@ -158,4 +158,18 @@ framework module YapDatabase {
header "YapDatabaseCrossProcessNotificationConnection.h"
header "YapDatabaseCrossProcessNotificationTransaction.h"
}

// Extension: CloudCore

explicit module YapDatabaseCloudCore {
header "YapDatabaseCloudCore.h"
header "YapDatabaseCloudCoreOptions.h"
header "YapDatabaseCloudCoreConnection.h"
header "YapDatabaseCloudCoreTransaction.h"
header "YapManyToManyCache.h"
header "YapDatabaseCloudCoreOperation.h"
header "YapDatabaseCloudCorePipelineDelegate.h"
header "YapDatabaseCloudCorePipeline.h"
header "YapDatabaseCloudCoreGraph.h"
}
}
32 changes: 23 additions & 9 deletions Framework/watchOS/module.modulemap
Expand Up @@ -23,7 +23,7 @@ framework module YapDatabase {
}

// Extension: View

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewOptions.h"
Expand All @@ -34,16 +34,16 @@ framework module YapDatabase {
header "YapDatabaseViewRangeOptions.h"
}

// Extension: AutoView
// Extension: AutoView

explicit module YapDatabaseAutoView {
header "YapDatabaseViewTypes.h"
header "YapDatabaseAutoView.h"
header "YapDatabaseAutoViewConnection.h"
header "YapDatabaseAutoViewTransaction.h"
explicit module YapDatabaseAutoView {
header "YapDatabaseViewTypes.h"
header "YapDatabaseAutoView.h"
header "YapDatabaseAutoViewConnection.h"
header "YapDatabaseAutoViewTransaction.h"

export YapDatabaseView
}
export YapDatabaseView
}

// Extension: FilteredView

Expand Down Expand Up @@ -158,4 +158,18 @@ framework module YapDatabase {
header "YapDatabaseCrossProcessNotificationConnection.h"
header "YapDatabaseCrossProcessNotificationTransaction.h"
}

// Extension: CloudCore

explicit module YapDatabaseCloudCore {
header "YapDatabaseCloudCore.h"
header "YapDatabaseCloudCoreOptions.h"
header "YapDatabaseCloudCoreConnection.h"
header "YapDatabaseCloudCoreTransaction.h"
header "YapManyToManyCache.h"
header "YapDatabaseCloudCoreOperation.h"
header "YapDatabaseCloudCorePipelineDelegate.h"
header "YapDatabaseCloudCorePipeline.h"
header "YapDatabaseCloudCoreGraph.h"
}
}

0 comments on commit 0cd8bf6

Please sign in to comment.