8000 🐛 Fix missing headers errors when integrating via SPM and Tuist by monchote · Pull Request #1 · monzo/nearby · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

🐛 Fix missing headers errors when integrating via SPM and Tuist #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and 8000 contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 2, 2024
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
13 changes: 8 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
url: "https://github.com/bourdakos1/abseil-cpp-SwiftPM.git",
branch: "cxx17-test"
url: "https://github.com/monzo/abseil-cpp-SwiftPM.git",
exact: "0.20240902.0"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This tag doesn't exist yet. Pending on monzo/abseil-cpp-SwiftPM#1

),
.package(
url: "https://github.com/firebase/boringssl-SwiftPM.git",
"0.7.1"..<"0.8.0"
url: "https://github.com/monzo/boringssl-SwiftPM.git",
exact: "0.7.3"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This tag doesn't exist yet. Pending on monzo/boringSSL-SwiftPM#1

),
],
targets: [
Expand Down Expand Up @@ -241,7 +241,10 @@ let package = Package(
"json/wsjcpp.yml",
],
sources: ["EmptySwiftPackageManagerFile.cpp"],
publicHeadersPath: "json/include"
publicHeadersPath: "json/include",
cxxSettings: [
.headerSearchPath("json/include")
]
),
.target(
name: "protobuf",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#import "GNCDiscoveryDelegate.h"
#import "GNCDiscoveryOptions.h"
#import "GNCError.h"
#import "GNCException.h"
#import "GNCFlags.h"
#import "GNCPayload.h"
#import "GNCPayloadDelegate.h"
Expand Down
0