Skip to content

Code sharing

One of the inconveniences of Xcode when we use it with large projects is that it doesn’t allow reusing elements of the projects other than the build settings through .xcconfig files. Being able to reuse project definitions is useful for the following reasons:

  • It eases the maintenance because changes can be applied in one place and all the projects get the changes automatically.
  • It makes it possible to define conventions that new projects can conform to.
  • Projects are more consistent and therefore the likelihood of broken builds due inconsistencies is significantly less.
  • Adding a new projects becomes an easy task because we can reuse the existing logic.

Reusing code across manifest files is possible in Tuist thanks to the concept of project description helpers.

Project description helpers are Swift files that get compiled into a module, ProjectDescriptionHelpers, that manifest files can import. The module is compiled by gathering all the files in the Tuist/ProjectDescriptionHelpers directory.

You can import them into your manifest file by adding an import statement at the top of the file:

Project.swift
import ProjectDescription
import ProjectDescriptionHelpers

ProjectDescriptionHelpers are available in the following manifests:

  • Project.swift
  • Package.swift (only behind the #TUIST compiler flag)
  • Workspace.swift

The snippets below contain an example of how we extend the Project model to add static constructors and how we use them from a Project.swift file:

import ProjectDescription
extension Project {
public static func featureFramework(name: String, dependencies: [TargetDependency] = []) -> Project {
return Project(
name: name,
targets: [
.target(
name: name,
destinations: .iOS,
product: .framework,
bundleId: "dev.tuist.\(name)",
infoPlist: "\(name).plist",
sources: ["Sources/\(name)/**"],
resources: ["Resources/\(name)/**",],
dependencies: dependencies
),
.target(
name: "\(name)Tests",
destinations: .iOS,
product: .unitTests,
bundleId: "dev.tuist.\(name)Tests",
infoPlist: "\(name)Tests.plist",
sources: ["Sources/\(name)Tests/**"],
resources: ["Resources/\(name)Tests/**",],
dependencies: [.target(name: name)]
)
]
)
}
}
import ProjectDescription
import ProjectDescriptionHelpers
let project = Project.featureFramework(name: "MyFeature")