Skip to content

Commit 44091b3

Browse files
mitsuhikosteipete
authored andcommitted
Added vibecoded accessibility API
1 parent 6ba9245 commit 44091b3

File tree

10 files changed

+1584
-3
lines changed

10 files changed

+1584
-3
lines changed

ax/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
.build
3+
Packages
4+
xcuserdata/
5+
DerivedData/
6+
.swiftpm/configuration/registries.json
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8+
.netrc

ax/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
build:
2+
swift build -c release
3+
4+
run:
5+
swift run -c release

ax/Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version: 6.1
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "x",
8+
platforms: [
9+
.macOS(.v11)
10+
],
11+
targets: [
12+
// Targets are the basic building blocks of a package, defining a module or a test suite.
13+
// Targets can depend on other targets in this package and products from dependencies.
14+
.executableTarget(
15+
name: "x",
16+
swiftSettings: [
17+
.unsafeFlags(["-framework", "ApplicationServices", "-framework", "AppKit"])
18+
]
19+
),
20+
]
21+
)

0 commit comments

Comments
 (0)