ios project skeleton

This commit is contained in:
2026-02-19 22:38:45 -08:00
parent 9d59b9dbb2
commit b91b03b74f
8 changed files with 123 additions and 0 deletions

8
ios/Packages/Sybil/.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc

View File

@@ -0,0 +1,27 @@
// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Sybil",
platforms: [
.iOS("18.0")
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "Sybil",
targets: ["Sybil"]),
],
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: "Sybil"),
.testTarget(
name: "SybilTests",
dependencies: ["Sybil"]
),
]
)

View File

@@ -0,0 +1,19 @@
//
// SplitView.swift
// Sybil
//
// Created by James Magahern on 2/19/26.
//
import SwiftUI
public struct SplitView: View
{
public init() {
}
public var body: some View {
Text("Not Yet Implemented: replace me.")
}
}

View File

@@ -0,0 +1,6 @@
import Testing
@testable import Sybil
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
}