Skip to content

Commit

Permalink
Remove xcodeproj
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrmarin committed Jul 11, 2024
1 parent 5a5791b commit 444a02b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 810 deletions.
67 changes: 0 additions & 67 deletions .swiftpm/xcode/xcshareddata/xcschemes/nmbr-Package.xcscheme

This file was deleted.

22 changes: 9 additions & 13 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,17 @@ import PackageDescription
let package = Package(
name: "nmbr-icu",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "nmbr-icu",
targets: ["nmbr-icu"]),
.library(name: "nmbr-icu", targets: ["nmbr-icu"])
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "nmbr-icu",
dependencies: ["ICU"]),
.binaryTarget(name: "ICU", path: "ICU.xcframework"),
.testTarget(
name: "nmbrTests",
dependencies: ["nmbr-icu"]),
// Main NMBR target, contains 1 ObjC++ file (h + mm)
.target(name: "nmbr-icu",
dependencies: ["ICU"]),
// Target to build the ICU framework, an xcframework for the ICU C++ code
.binaryTarget(name: "ICU",
path: "./ICU.xcframework"),
// Test target
.testTarget(name: "nmbrTests", dependencies: ["nmbr-icu"])
],
cxxLanguageStandard: .cxx20
)
4 changes: 2 additions & 2 deletions Tests/nmbr-icu.xctestplan
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"testTargets" : [
{
"target" : {
"containerPath" : "container:",
"identifier" : "nmbrTests",
"containerPath" : "container:nmbr.xcodeproj",
"identifier" : "8F2608A62C3DDEE4001391F7",
"name" : "nmbrTests"
}
}
Expand Down
Loading

0 comments on commit 444a02b

Please sign in to comment.