diff --git a/KAProgressLabel/include/KAProgressLabel.h b/KAProgressLabel/include/KAProgressLabel.h new file mode 120000 index 0000000..824e8dc --- /dev/null +++ b/KAProgressLabel/include/KAProgressLabel.h @@ -0,0 +1 @@ +../KAProgressLabel.h \ No newline at end of file diff --git a/KAProgressLabel/include/TPPropertyAnimation.h b/KAProgressLabel/include/TPPropertyAnimation.h new file mode 120000 index 0000000..a36df21 --- /dev/null +++ b/KAProgressLabel/include/TPPropertyAnimation.h @@ -0,0 +1 @@ +../TPPropertyAnimation.h \ No newline at end of file diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..b420482 --- /dev/null +++ b/Package.swift @@ -0,0 +1,21 @@ +// swift-tools-version: 5.9 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "KAProgressLabel", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "KAProgressLabel", + targets: ["KAProgressLabel"]) + ], + 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: "KAProgressLabel", + path: "KAProgressLabel") + ] +)