mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Installing a module target without a LIBRARY DESTINATION no longer raises an error. On DLL platforms, the default destination is the RUNTIME default. Otherwise, the LIBRARY default is used. Closes: #27759
9 lines
375 B
ReStructuredText
9 lines
375 B
ReStructuredText
default-module-install-destination
|
|
----------------------------------
|
|
|
|
* The :command:`install(TARGETS)` command no longer requires a
|
|
``LIBRARY DESTINATION`` for :ref:`Module Libraries`. When no destination is
|
|
given, a module library is installed to the default ``RUNTIME``
|
|
destination on DLL platforms and to the default ``LIBRARY`` destination
|
|
on other platforms.
|