cmake/Help/variable/CMAKE_SKIP_INSTALL_ALL_DEPENDENCY.rst

12 lines
574 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.
If :variable:`CMAKE_SKIP_INSTALL_ALL_DEPENDENCY` is set to ``TRUE``, this
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.