- 原文: Source Layouts
- 译者: chai2010
在Swift包管理工具中,swift build
构建命令根据文件系统中Sources目录的源代码的布局来创建目标模块。
例如,Swift源文件有以下目录布局结构:
example/ example/Sources/bar.swift example/Sources/baz.swift
在example
目录运行swift build
命令将生成一个静态库目标:example/.build/debug/example.a
。
如果要生成多个目标文件,则需要在Sources目录中创建多个子目录:
example/Sources/foo/foo.swift example/Sources/bar/bar.swift
运行swift build
构建命令将生成两个静态库目标:
example/.build/debug/foo.a
example/.build/debug/bar.a
要生成一个可执行的模块(而不是库),需要在模块代码所在目录添加一个main.swift
文件:
example/Sources/foo/main.swift example/Sources/bar/bar.swift
现在运行swift build
命令将生成一个可执行程序:
example/.build/debug/foo
example/.build/debug/bar.a
其中foo
是一个可执行程序,bar.a
是一个静态库。