Skip to content

Commit

Permalink
build: fix external SPM installation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjl-mux committed Jun 18, 2024
1 parent caec790 commit 6dfd23a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
1906981C2BB37A3300CE0FF7 /* MuxStatsGoogleIMAPlugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MuxStatsGoogleIMAPlugin.h; sourceTree = "<group>"; };
190698212BB37A3300CE0FF7 /* MuxStatsGoogleIMAPluginTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MuxStatsGoogleIMAPluginTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
190698262BB37A3300CE0FF7 /* MuxStatsGoogleIMAPluginTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MuxStatsGoogleIMAPluginTests.m; sourceTree = "<group>"; };
198612432C22337F00E6A50C /* MuxImaListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MuxImaListener.h; path = ../../../Sources/MuxStatsGoogleIMAPlugin/MuxImaListener.h; sourceTree = "<group>"; };
198612432C22337F00E6A50C /* MuxImaListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MuxImaListener.h; path = ../../../Sources/MuxStatsGoogleIMAPlugin/include/MuxImaListener.h; sourceTree = "<group>"; };
198612442C22337F00E6A50C /* MuxImaListener.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MuxImaListener.m; path = ../../../Sources/MuxStatsGoogleIMAPlugin/MuxImaListener.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
190698482BB37B8E00CE0FF7 /* MuxStatsGoogleIMAPluginTVOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MuxStatsGoogleIMAPluginTVOS.h; sourceTree = "<group>"; };
1906984D2BB37B8E00CE0FF7 /* MuxStatsGoogleIMAPluginTVOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MuxStatsGoogleIMAPluginTVOSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
190698522BB37B8E00CE0FF7 /* MuxStatsGoogleIMAPluginTVOSTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MuxStatsGoogleIMAPluginTVOSTests.m; sourceTree = "<group>"; };
1986123F2C22331700E6A50C /* MuxImaListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MuxImaListener.h; path = ../../../Sources/MuxStatsGoogleIMAPlugin/MuxImaListener.h; sourceTree = "<group>"; };
1986123F2C22331700E6A50C /* MuxImaListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MuxImaListener.h; path = ../../../Sources/MuxStatsGoogleIMAPlugin/include/MuxImaListener.h; sourceTree = "<group>"; };
198612402C22331700E6A50C /* MuxImaListener.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MuxImaListener.m; path = ../../../Sources/MuxStatsGoogleIMAPlugin/MuxImaListener.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand Down
3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import PackageDescription

let package = Package(
name: "MuxStatsGoogleIMAPlugin",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "MuxStatsGoogleIMAPlugin",
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

# Mux-Stats-Google-IMA

This pod was created with `pod lib create`

## Development

To run the example project, clone the repo, and run `pod install` from the Example directory first. Then open
Expand Down
4 changes: 4 additions & 0 deletions Sources/MuxStatsGoogleIMAPlugin/include/module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

module MuxStatsGoogleIMAPlugin {
header "MuxImaListener.h"
}

0 comments on commit 6dfd23a

Please sign in to comment.