ENUM
TargetDependency.PackageType
Contents
- Cases
runtime
plugin
macro
swift
public enum PackageType: Codable, Hashable, Sendable
Cases
runtime
swift
case runtime
A runtime package type represents a standard package whose sources are linked at runtime. For example importing the framework and consuming from dependent targets.
plugin
swift
case plugin
A plugin package represents a package that's loaded by the build system at compile-time to extend the compilation process.
macro
swift
case macro
A macro package represents a package that contains a Swift Macro.