Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Fix Build Error
Browse files Browse the repository at this point in the history
  • Loading branch information
dp221125 committed Aug 12, 2023
1 parent 93b471d commit dfbeacd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
8 changes: 8 additions & 0 deletions GoogleMapsWrapper/File.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// File.swift
//
//
// Created by Milkyo on 8/12/23.
//

import Foundation
20 changes: 17 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,26 @@ let package = Package(
.library(
name: "GPGoogleMaps-SPM",
targets: [
"GoogleMaps",
"GoogleMapsBase",
"GoogleMapsCore"
"GoogleMapsWrapper",
]),
],
targets: [
.target(
name: "GoogleMapsWrapper",
dependencies: [
"GoogleMaps",
"GoogleMapsBase",
"GoogleMapsCore",
],
path: "GoogleMapsWrapper",
linkerSettings: [
.linkedLibrary("z"),
.linkedFramework("CoreData"),
.linkedFramework("CoreLocation"),
.linkedFramework("CoreTelephony"),
.linkedFramework("SystemConfiguration"),
]
),
.binaryTarget(
name: "GoogleMaps",
url: "https://github.com/good-potatos/GPGoogleMaps-SPM/releases/download/8.0.0/GoogleMaps.xcframework.zip",
Expand Down

0 comments on commit dfbeacd

Please sign in to comment.