shapes

Форк
0
/
Package.swift 
28 строк · 965.0 Байт
1
// swift-tools-version:5.3
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: "Shapes",
8
    platforms: [
9
        .macOS(.v10_15), .iOS(.v13)
10
    ],
11
    products: [
12
        // Products define the executables and libraries a package produces, and make them visible to other packages.
13
        .library(
14
            name: "Shapes",
15
            targets: ["Shapes"]),
16
    ],
17
    dependencies: [
18
        // Dependencies declare other packages that this package depends on.
19
        // .package(url: /* package url */, from: "1.0.0"),
20
    ],
21
    targets: [
22
        // Targets are the basic building blocks of a package. A target can define a module or a test suite.
23
        // Targets can depend on other targets in this package, and on products in packages this package depends on.
24
        .target(
25
            name: "Shapes",
26
            dependencies: []),
27
    ]
28
)
29

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.