diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2019-07-09 21:07:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-30 15:02:43 (GMT) |
commit | da5ac4bb602bafb97b4dc0e012f1d26bbab58e3a (patch) | |
tree | 52a7e3d270e57688a5aa089986b09d857f8d268c /Modules/CPack.cmake | |
parent | d4e6b2ae25659699fccf6bc5888e87179f41b23a (diff) | |
download | CMake-da5ac4bb602bafb97b4dc0e012f1d26bbab58e3a.zip CMake-da5ac4bb602bafb97b4dc0e012f1d26bbab58e3a.tar.gz CMake-da5ac4bb602bafb97b4dc0e012f1d26bbab58e3a.tar.bz2 |
cpack: Add `CPACK_INSTALL_CMAKE_CONFIGURATIONS` variable
For the multi-configuration generators one can specify the list
of configurations to include in the package.
E.g. having a project, where debug libraries have a suffix to
distinct them from the release builds, one can build the package
containing both `Debug` and `Release` binaries.
Diffstat (limited to 'Modules/CPack.cmake')
-rw-r--r-- | Modules/CPack.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake index 8a6a712..1809846 100644 --- a/Modules/CPack.cmake +++ b/Modules/CPack.cmake @@ -301,6 +301,13 @@ The following variables are for advanced uses of CPack: project. Defaults to the value of :variable:`CMAKE_GENERATOR`. Few users will want to change this setting. +.. variable:: CPACK_INSTALL_CMAKE_CONFIGURATIONS + + Specify the project configurations to be packaged (e.g. ``Debug``, ``Release``, + etc.). When the CMake project uses a multi-configuration generator such as Xcode + or Visual Studio, this option can be used to specify what configurations + to include in the package. + .. variable:: CPACK_INSTALL_CMAKE_PROJECTS List of four values that specify what project to install. The four values |