CMake/Tutorials/Package Registry: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Created page with "CMake provides two central locations to register packages that have been built or installed anywhere on a system: * User Package Registry * [[#System|System Package Re...")
 
No edit summary
Line 1: Line 1:
==Introduction==
CMake provides two central locations to register packages that have been built or installed anywhere on a system:
CMake provides two central locations to register packages that have been built or installed anywhere on a system:


Line 4: Line 6:
* [[#System|System Package Registry]]
* [[#System|System Package Registry]]


Each registry lists for a specific package name a list of directories in which <code>find_package</code> should search for package configuration files (<package>Config.cmake).
A project may use the <code>export(PACKAGE)</code> command to register its build tree in the ''user'' package registry.
A package installer may populate either the user or system registry (using its own means) to refer to the installed package location.
In either case the package should store at the registered location a [[CMake/Tutorials/Packaging#Package_Configuration_Files|package configuration file]] (<code><package>Config.cmake</code>) and optionally a [[CMake/Tutorials/Packaging#Package_Version_Files|package version file]] (<code><package>ConfigVersion.cmake</code>).
 
The <code>find_package</code> command searches the package registries as specified in its documentation.
If it has sufficient permissions it also removes stale package registry entries that refer to directories that do not exist or do not contain a matching package configuration file.


==User==
==User==


The ''User Package Registry'' is stored in a per-user location.
The ''User Package Registry'' is stored in a per-user location.
A project may use the <code>export(PACKAGE)</code> command to register its build tree in the user package registry.
A package installer may populate the registry using its own means to refer to the install location.


On Windows the user package registry is stored in the Windows registry under a key in <code>HKEY_CURRENT_USER</code>.
On Windows the user package registry is stored in the Windows registry under a key in <code>HKEY_CURRENT_USER</code>.
Line 29: Line 34:


The ''System Package Registry'' is stored in a system-wide location.
The ''System Package Registry'' is stored in a system-wide location.
A package installer may populate the registry using its own means to refer to the install location.


On Windows the system package registry is stored in the Windows registry under a key in <code>HKEY_LOCAL_MACHINE</code>.
On Windows the system package registry is stored in the Windows registry under a key in <code>HKEY_LOCAL_MACHINE</code>.

Revision as of 20:12, 14 February 2012

Introduction

CMake provides two central locations to register packages that have been built or installed anywhere on a system:

A project may use the export(PACKAGE) command to register its build tree in the user package registry. A package installer may populate either the user or system registry (using its own means) to refer to the installed package location. In either case the package should store at the registered location a package configuration file (<package>Config.cmake) and optionally a package version file (<package>ConfigVersion.cmake).

The find_package command searches the package registries as specified in its documentation. If it has sufficient permissions it also removes stale package registry entries that refer to directories that do not exist or do not contain a matching package configuration file.

User

The User Package Registry is stored in a per-user location.

On Windows the user package registry is stored in the Windows registry under a key in HKEY_CURRENT_USER. A <package> may appear under registry key

 HKEY_CURRENT_USER\Software\Kitware\CMake\Packages\<package>

as a REG_SZ value, with arbitrary name, that specifies the directory containing the package configuration file.

On UNIX platforms the user package registry is stored in the user home directory under ~/.cmake/packages. A <package> may appear under the directory

 ~/.cmake/packages/<package>

as a file, with arbitrary name, whose content specifies the directory containing the package configuration file.

System

The System Package Registry is stored in a system-wide location.

On Windows the system package registry is stored in the Windows registry under a key in HKEY_LOCAL_MACHINE. A <package> may appear under registry key

 HKEY_LOCAL_MACHINE\Software\Kitware\CMake\Packages\<package>

as a REG_SZ value, with arbitrary name, that specifies the directory containing the package configuration file.

There is no system package registry on non-Windows platforms.