https://github.com/Kitware/CMake
Revision 31602583930b6c517c439ae8c15df26043031345 authored by Sebastian Holtermann on 13 March 2019, 18:03:35 UTC, committed by Sebastian Holtermann on 18 March 2019, 14:09:10 UTC
After the switch to `cmFileTime`, the anonymous private class of
`cmFileTimeComparison` held only a `std::map`.  This moves the
`std::map` to the `cmFileTimeComparison` class itself and removes the
instantiation of an anonymous private class.
1 parent 103aa9e
Raw File
Tip revision: 31602583930b6c517c439ae8c15df26043031345 authored by Sebastian Holtermann on 13 March 2019, 18:03:35 UTC
cmFileTimeComparison: Replace anonymous private class with std::map
Tip revision: 3160258
LINKER_LANGUAGE.rst
LINKER_LANGUAGE
---------------

Specifies language whose compiler will invoke the linker.

For executables, shared libraries, and modules, this sets the language
whose compiler is used to link the target (such as "C" or "CXX").  A
typical value for an executable is the language of the source file
providing the program entry point (main).  If not set, the language
with the highest linker preference value is the default.  See
documentation of CMAKE_<LANG>_LINKER_PREFERENCE variables.

If this property is not set by the user, it will be calculated at
generate-time by CMake.
back to top