mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
The `WINDOWS_EXPORT_ALL_SYMBOLS` target property exports all symbols found in object files explicitly given to the linker. However, the linker may also find additional symbols in dependencies and copy them into the linked binary (e.g. from `msvcrt.lib`). Provide a way to export an explicit list of such symbols by adding a `.def` file as a source file. Fixes: #16473
9 lines
377 B
ReStructuredText
9 lines
377 B
ReStructuredText
module-def-and-WINDOWS_EXPORT_ALL_SYMBOLS
|
|
-----------------------------------------
|
|
|
|
* The :prop_tgt:`WINDOWS_EXPORT_ALL_SYMBOLS` target property may now
|
|
be used in combination with explicit ``.def`` files in order to
|
|
export all symbols from the object files within a target plus
|
|
an explicit list of symbols that the linker finds in dependencies
|
|
(e.g. ``msvcrt.lib``).
|