Server IP : 172.67.216.182 / Your IP : 108.162.226.86 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/cmake-3.22/Help/variable/ |
Upload File : |
CPACK_CUSTOM_INSTALL_VARIABLES ------------------------------ .. versionadded:: 3.21 CPack variables (set via e.g. ``cpack -D``, ``CPackConfig.cmake`` or :variable:`CPACK_PROJECT_CONFIG_FILE` scripts) are not directly visible in installation scripts. Instead, one can pass a list of ``varName=value`` pairs in the ``CPACK_CUSTOM_INSTALL_VARIABLES`` variable. At install time, each list item will result in a variable of the specified name (``varName``) being set to the given ``value``. The ``=`` can be omitted for an empty ``value``. ``CPACK_CUSTOM_INSTALL_VARIABLES`` allows the packaging installation to be influenced by the user or driving script at CPack runtime without having to regenerate the install scripts. Example """"""" .. code-block:: cmake install(FILES large.txt DESTINATION data) install(CODE [[ if(ENABLE_COMPRESSION) # "run-compressor" is a fictional tool that produces # large.txt.xz from large.txt and then removes the input file execute_process(COMMAND run-compressor $ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/large.txt) endif() ]]) With the above example snippet, :manual:`cpack <cpack(1)>` will by default run the installation script with ``ENABLE_COMPRESSION`` unset, resulting in a package containing the uncompressed ``large.txt``. This can be overridden when invoking :manual:`cpack <cpack(1)>` like so: .. code-block:: shell cpack -D "CPACK_CUSTOM_INSTALL_VARIABLES=ENABLE_COMPRESSION=TRUE" The installation script will then run with ``ENABLE_COMPRESSION`` set to ``TRUE``, resulting in a package containing the compressed ``large.txt.xz`` instead.