Module bundle

The bundle module contains properties and rules for building and working with Core Foundation bundles on Apple platforms (commonly known as CFBundles or simply "bundles"), directories with a standardized hierarchical structure that hold executable code and resources. Examples include applications, frameworks, and plugins.

This module is available on all platforms but is currently only useful on Apple platforms.

Note: Core Foundation bundles are not to be confused with Mach-O loadable modules, which are also referred to as (loadable) "bundles" in Apple parlance. In Qbs, Core Foundation bundles are referred to as "bundles", while Mach-O loadable bundles are referred to as "loadable modules".

General Properties

PropertyTypeSinceDefaultDescription
isBundlebool1.4true for applications and dynamic libraries on Apple platforms, false otherwiseWhether the product should actually be packaged as a bundle as opposed to a flat file. This allows a product indirectly dependent on the bundle module to retain control of whether it should actually be built as a bundle.
isShallowbool (read only)1.4false on macOS, otherwise trueWhether the bundle directory tree is "shallow", i.e. whether it lacks a Contents subdirectory. This is the default on all platforms other than macOS.
identifierPrefixstring1.4org.examplePrefix for the product's bundle identifier. If identifier is left unset, the bundle identifier will be a concatenation of this value and the identifier property, separated by a '.'. This corresponds to the organization identifier in Xcode.
identifierstring1.4combination of identifierPrefix and the product's target name formatted as an RFC 1034 identifierThe bundle's identifier. If left unset, the bundle identifier will be a concatenation of this value and the identifierPrefix property, separated by a '.'.
extensionstring1.4"app" for "APPL" packages, "framework" for "FMWK" packages, "bundle" for "BNDL" and custom packagesThe extension of the bundle's wrapper directory (minus the leading '.'). This property should not normally need to be set unless creating a custom bundle type.
packageTypestring1.4"APPL" for applications, "FMWK" for frameworks, "BNDL" for custom bundlesThe four-letter file type code of the bundle, specified in the bundle's PkgInfo file and in the bundle's Info.plist as the value for the CFBundlePackageType key. This property should almost never need to be changed, though specifying an alternative package type for custom bundles is allowed.
generatePackageInfobool1.5true for applications, otherwise falseWhether to generate a PkgInfo file for the bundle. This property should almost never need to be changed, though enabling it when specifying an alternative package type for custom bundles using packageType is allowed.
signaturestring1.4"????"The four-letter signature specific to the bundle, also known as the creator code, specified in the bundle's PkgInfo file and in the bundle's Info.plist as the value for the CFBundleSignature key. This property should normally never need to be set.
bundleNamestring1.4combination of the product's targetName and bundle's extensionThe file name of the bundle's wrapper directory. This property should not normally need to be changed.
frameworkVersionstring1.4"A"For framework bundles, the version of the framework. Unused for other package types.
publicHeaderspathList1.4undefinedList of public header files to copy to a framework bundle's Headers subdirectory.
privateHeaderspathList1.4undefinedList of private header files to copy to a framework bundle's PrivateHeaders subdirectory
resourcespathList1.4undefinedList of resources to copy to a bundle's Resources subdirectory. Files will automatically be copied into lproj subdirectories corresponding to the input files' paths.
infoPlistobject1.4undefinedDictionary of key-value pairs to add to the bundle's Info.plist. The contents of this property will be aggregated with the values from any plist files. If infoPlist and any plist files contain the same key, the former will take precedence, but may also be overridden during postprocessing (see processInfoPlist). If undefined, will not be taken into account.
processInfoPlistbool1.4trueWhether to perform post-processing on the aggregated Info.plist contents. If this property is true, various post-processing operations will be applied to the bundle's property list dictionary after it has been aggregated from the contents of any plist files on disk, and the infoPlist property. First, values from a list of defaults will be added to the dictionary if they were not already present. Then, values from the AdditionalInfo key of the platform SDK's Info.plist file will be added to the dictionary if they were not already present, as well as some other miscellaneous keys, such as BuildMachineOSBuild and UIDeviceFamily (on iOS). Finally, variable expansions will be performed such that substrings of the form $(VAR) or ${VAR} will be replaced with their corresponding environment variables.
embedInfoPlistbool1.4true if the product is a command line tool, otherwise false.Whether to create a __TEXT section in the product's executable containing the processed Info.plist. Only applies to command line applications.
infoPlistFormatstring1.4"binary1" for iOS; "same-as-input" or "xml1" for macOS depending on whether a plist file is used; undefined for all other operating systems.The file format to write the product's resulting Info.plist in. Possible values: "xml1", "binary1", "json", "same-as-input"

Path Specific Properties

All properties in this section are read-only properties of type string specifying file paths relative to the directory containing the bundle.

PropertySinceDescription
infoPlistPath1.4Path that the Info.plist file will be written to.
infoStringsPath1.5Path that the InfoPlist.strings file will be written to.
pkgInfoPath1.4Path that the PkgInfo file will be written to.
versionPlistPath1.4Path that the version.plist file will be written to.
executablePath1.4Path that the main executable file will be written to.
contentsFolderPath1.4Path of the bundle's Contents subdirectory.
documentationFolderPath1.5Path of the directory where documentation will be written.
executableFolderPath1.4Path of the directory where the main exectuable will be written. Not to be confused with executablesFolderPath.
executablesFolderPath1.4Path of the directory where auxiliary executables will be copied. Not to be confused with executableFolderPath.
frameworksFolderPath1.4Path of the directory where internal frameworks will be copied.
javaFolderPath1.5Path of the directory where Java content will be written.
localizedResourcesFolderPath1.5Path of the directory where localized resource files will be copied.
pluginsFolderPath1.4Path of the directory where plugins will be copied.
privateHeadersFolderPath1.4Path of the directory where private header files will be copied.
publicHeadersFolderPath1.4Path of the directory where public headers files will be copied.
scriptsFolderPath1.4Path of the directory where script files will be copied.
sharedFrameworksFolderPath1.4Path of the directory where shared frameworks will be copied.
sharedSupportFolderPath1.4Path of the directory where shared support files will be copied.
unlocalizedResourcesFolderPath1.4Path of the directory where non-localized resource files will be copied. This is the same as the base resources path.
versionsFolderPath1.5Path of the bundle's Versions subdirectory. This is only relevant for (non-shallow) framework bundles.