Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake install --component argument docs #2893

Merged
merged 1 commit into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion reference/conanfile/tools/cmake/cmake.rst
Original file line number Diff line number Diff line change
@@ -109,14 +109,15 @@ install()

.. code:: python

def install(self, build_type=None):
def install(self, build_type=None, component=None):


Equivalent to run ``cmake --build . --target=install``

- ``build_type``: Use it only to override the value defined in the ``settings.build_type``. It
can fail if the build is single configuration (e.g. Unix Makefiles), as in that case the build
type must be specified at configure time, not build type.
- ``component``: Passes the ``--component=<component>`` argument to the CMake install command.


test()