Skip to content

Commit 04da43a

Browse files
committed
Add Package.swift
1 parent 3e53250 commit 04da43a

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

GeoFire/Implementation/GeoFire+Private.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright (c) 2014 Firebase. All rights reserved.
77
//
88

9-
#import <GeoFire/GeoFire.h>
9+
#import "GeoFire.h"
1010
#import <CoreLocation/CoreLocation.h>
1111

1212
@interface GeoFire (Private)

Package.swift

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "GeoFire",
6+
defaultLocalization: "en",
7+
platforms: [.iOS(.v11), .macOS(.v10_12), .tvOS(.v10), .watchOS(.v7)],
8+
products: [
9+
.library(
10+
name: "GeoFire",
11+
targets: ["GeoFire"]
12+
),
13+
.library(
14+
name: "GeoFireUtils",
15+
targets: ["GeoFireUtils"]
16+
)
17+
],
18+
dependencies: [
19+
.package(name: "Firebase",
20+
url: "https://github.com/firebase/firebase-ios-sdk.git",
21+
.upToNextMajor(from: "7.0.0")),
22+
],
23+
targets: [
24+
.target(
25+
name: "GeoFire",
26+
dependencies: [
27+
"GeoFireUtils",
28+
.product(name: "FirebaseDatabase", package: "Firebase")
29+
],
30+
path: "GeoFire",
31+
exclude: [
32+
"./Utils",
33+
],
34+
publicHeadersPath: "./API"
35+
),
36+
.testTarget(
37+
name: "GeoFireTests",
38+
dependencies: [
39+
"GeoFire"
40+
],
41+
path: "GeoFireTests",
42+
exclude: [
43+
"GeoFireTests-Info.plist",
44+
],
45+
cSettings: [
46+
.headerSearchPath("../GeoFire/API"),
47+
.headerSearchPath("../GeoFire/Utils"),
48+
]
49+
),
50+
.target(
51+
name: "GeoFireUtils",
52+
path: "GeoFire/Utils",
53+
publicHeadersPath: "."
54+
)
55+
]
56+
)

0 commit comments

Comments
 (0)