cmake/Help/variable/CMAKE_SKIP_INSTALL_ALL_DEPENDENCY.rst

14 lines
620 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY
---------------------------------
2015-11-17 17:22:37 +01:00
Don't make the ``install`` target depend on the ``all`` target.
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
By default, the ``install`` target depends on the ``all`` target. This
has the effect, that when ``make install`` is invoked or ``INSTALL`` is
built, first the ``all`` target is built, then the installation starts.
2023-05-23 16:38:00 +02:00
If ``CMAKE_SKIP_INSTALL_ALL_DEPENDENCY`` is set to ``TRUE``, this
2015-11-17 17:22:37 +01:00
dependency is not created, so the installation process will start immediately,
2014-08-03 19:52:23 +02:00
independent from whether the project has been completely built or not.
2024-04-14 22:45:38 +02:00
See also :variable:`CMAKE_SKIP_TEST_ALL_DEPENDENCY`.