Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions Framework/Mac/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,25 @@ framework module YapDatabase {

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewTypes.h"
header "YapDatabaseViewOptions.h"
header "YapDatabaseViewConnection.h"
header "YapDatabaseViewTransaction.h"
header "YapDatabaseViewMappings.h"
header "YapDatabaseViewChange.h"
header "YapDatabaseViewRangeOptions.h"
}


// Extension: AutoView

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

export YapDatabaseView
}

// Extension: FilteredView

explicit module YapDatabaseFilteredView {
Expand Down
14 changes: 12 additions & 2 deletions Framework/iOS/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,25 @@ framework module YapDatabase {

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewTypes.h"
header "YapDatabaseViewOptions.h"
header "YapDatabaseViewConnection.h"
header "YapDatabaseViewTransaction.h"
header "YapDatabaseViewMappings.h"
header "YapDatabaseViewChange.h"
header "YapDatabaseViewRangeOptions.h"
}


// Extension: AutoView

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

export YapDatabaseView
}

// Extension: FilteredView

explicit module YapDatabaseFilteredView {
Expand Down
14 changes: 12 additions & 2 deletions Framework/tvOS/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,25 @@ framework module YapDatabase {

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewTypes.h"
header "YapDatabaseViewOptions.h"
header "YapDatabaseViewConnection.h"
header "YapDatabaseViewTransaction.h"
header "YapDatabaseViewMappings.h"
header "YapDatabaseViewChange.h"
header "YapDatabaseViewRangeOptions.h"
}


// Extension: AutoView

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

export YapDatabaseView
}

// Extension: FilteredView

explicit module YapDatabaseFilteredView {
Expand Down
12 changes: 11 additions & 1 deletion Framework/watchOS/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,24 @@ framework module YapDatabase {

explicit module YapDatabaseView {
header "YapDatabaseView.h"
header "YapDatabaseViewTypes.h"
header "YapDatabaseViewOptions.h"
header "YapDatabaseViewConnection.h"
header "YapDatabaseViewTransaction.h"
header "YapDatabaseViewMappings.h"
header "YapDatabaseViewChange.h"
header "YapDatabaseViewRangeOptions.h"
}

// Extension: AutoView

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

export YapDatabaseView
}

// Extension: FilteredView

Expand Down
Loading