2013-10-30 17:58:25 +04:00
|
|
|
.. cmake-manual-description: CMake Command-Line Reference
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
cmake(1)
|
|
|
|
********
|
|
|
|
|
2013-10-16 18:25:43 +04:00
|
|
|
Synopsis
|
|
|
|
========
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-04 20:03:33 +04:00
|
|
|
.. parsed-literal::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-04 20:03:33 +04:00
|
|
|
cmake [<options>] (<path-to-source> | <path-to-existing-build>)
|
|
|
|
cmake [(-D<var>=<value>)...] -P <cmake-script-file>
|
|
|
|
cmake --build <dir> [<options>] [-- <build-tool-options>...]
|
|
|
|
cmake -E <command> [<options>]
|
|
|
|
cmake --find-package <options>...
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-10-16 18:25:43 +04:00
|
|
|
Description
|
|
|
|
===========
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
The "cmake" executable is the CMake command-line interface. It may be
|
|
|
|
used to configure projects in scripts. Project configuration settings
|
2013-11-04 20:07:16 +04:00
|
|
|
may be specified on the command line with the -D option.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
|
|
|
CMake is a cross-platform build system generator. Projects specify
|
|
|
|
their build process with platform-independent CMake listfiles included
|
|
|
|
in each directory of a source tree with the name CMakeLists.txt.
|
|
|
|
Users build a project by using CMake to generate a build system for a
|
|
|
|
native tool on their platform.
|
|
|
|
|
2013-11-04 20:03:33 +04:00
|
|
|
Options
|
|
|
|
=======
|
|
|
|
|
2013-10-16 19:24:16 +04:00
|
|
|
.. include:: OPTIONS_BUILD.txt
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``-E``
|
|
|
|
CMake command mode.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
For true platform independence, CMake provides a list of commands
|
|
|
|
that can be used on all systems. Run with -E help for the usage
|
|
|
|
information. Commands available are: chdir, compare_files, copy,
|
|
|
|
copy_directory, copy_if_different, echo, echo_append, environment,
|
2014-01-21 22:48:30 +04:00
|
|
|
make_directory, md5sum, remove, remove_directory, rename, sleep, tar, time,
|
2013-11-14 19:05:32 +04:00
|
|
|
touch, touch_nocreate. In addition, some platform specific commands
|
|
|
|
are available. On Windows: delete_regv, write_regv. On
|
|
|
|
UNIX: create_symlink.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``-L[A][H]``
|
|
|
|
List non-advanced cached variables.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
List cache variables will run CMake and list all the variables from
|
|
|
|
the CMake cache that are not marked as INTERNAL or ADVANCED. This
|
|
|
|
will effectively display current CMake settings, which can then be
|
|
|
|
changed with -D option. Changing some of the variables may result
|
|
|
|
in more variables being created. If A is specified, then it will
|
|
|
|
display also advanced variables. If H is specified, it will also
|
|
|
|
display help for each variable.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--build <dir>``
|
|
|
|
Build a CMake-generated project binary tree.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
This abstracts a native build tool's command-line interface with the
|
|
|
|
following options:
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
<dir> = Project binary directory to be built.
|
|
|
|
--target <tgt> = Build <tgt> instead of default targets.
|
|
|
|
--config <cfg> = For multi-configuration tools, choose <cfg>.
|
|
|
|
--clean-first = Build target 'clean' first, then build.
|
|
|
|
(To clean only, use --target 'clean'.)
|
|
|
|
--use-stderr = Ignored. Behavior is default in CMake >= 3.0.
|
|
|
|
-- = Pass remaining options to the native tool.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Run cmake --build with no options for quick help.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``-N``
|
|
|
|
View mode only.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Only load the cache. Do not actually run configure and generate
|
|
|
|
steps.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``-P <file>``
|
|
|
|
Process script mode.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Process the given cmake file as a script written in the CMake
|
|
|
|
language. No configure or generate step is performed and the cache
|
|
|
|
is not modified. If variables are defined using -D, this must be
|
|
|
|
done before the -P argument.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--find-package``
|
|
|
|
Run in pkg-config like mode.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Search a package using find_package() and print the resulting flags
|
|
|
|
to stdout. This can be used to use cmake instead of pkg-config to
|
|
|
|
find installed libraries in plain Makefile-based projects or in
|
|
|
|
autoconf-based projects (via share/aclocal/cmake.m4).
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--graphviz=[file]``
|
|
|
|
Generate graphviz of dependencies, see CMakeGraphVizOptions.cmake for more.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Generate a graphviz input file that will contain all the library and
|
|
|
|
executable dependencies in the project. See the documentation for
|
|
|
|
CMakeGraphVizOptions.cmake for more details.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--system-information [file]``
|
|
|
|
Dump information about this system.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Dump a wide range of information about the current system. If run
|
|
|
|
from the top of a binary tree for a CMake project it will dump
|
|
|
|
additional information such as the cache, log files etc.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--debug-trycompile``
|
|
|
|
Do not delete the try_compile build tree. Only useful on one try_compile at a time.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Do not delete the files and directories created for try_compile
|
|
|
|
calls. This is useful in debugging failed try_compiles. It may
|
|
|
|
however change the results of the try-compiles as old junk from a
|
|
|
|
previous try-compile may cause a different test to either pass or
|
|
|
|
fail incorrectly. This option is best used for one try-compile at a
|
|
|
|
time, and only when debugging.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--debug-output``
|
|
|
|
Put cmake in a debug mode.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Print extra stuff during the cmake run like stack traces with
|
|
|
|
message(send_error ) calls.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--trace``
|
|
|
|
Put cmake in trace mode.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Print a trace of all calls made and from where with
|
|
|
|
message(send_error ) calls.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--warn-uninitialized``
|
|
|
|
Warn about uninitialized values.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Print a warning when an uninitialized variable is used.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--warn-unused-vars``
|
|
|
|
Warn about unused variables.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Find variables that are declared or set, but not used.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--no-warn-unused-cli``
|
|
|
|
Don't warn about command line options.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Don't find variables that are declared on the command line, but not
|
|
|
|
used.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
``--check-system-vars``
|
|
|
|
Find problems with variable usage in system files.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-11-14 19:05:32 +04:00
|
|
|
Normally, unused and uninitialized variables are searched for only
|
|
|
|
in CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR. This flag tells CMake to
|
|
|
|
warn about other files as well.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-10-16 20:54:52 +04:00
|
|
|
.. include:: OPTIONS_HELP.txt
|
2013-09-12 19:41:36 +04:00
|
|
|
|
2013-10-16 18:25:43 +04:00
|
|
|
See Also
|
|
|
|
========
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2013-10-16 18:25:43 +04:00
|
|
|
.. include:: LINKS.txt
|