summaryrefslogtreecommitdiffstats
path: root/Source/cmWindowsRegistry.h
Commit message (Collapse)AuthorAgeFilesLines
* cmWindowsRegistry: Add missing <cstdint> includenanoric2022-06-101-0/+1
| | | | | | | It is needed for `std::uint8_t`, but was left out of commit 8d7e80cf3d (find_* commands: add control over Windows registry views, 2022-04-16). For some reason the include-what-you-use tool does not think the include is needed, so add an `IWYU pragma` to keep it.
* find_* commands: add control over Windows registry viewsMarc Chevrier2022-04-291-2/+27
| | | | Fixes: #22775
* cmWindowsRegistry: Add helper for conversion between string and enum ViewMarc Chevrier2022-04-291-0/+5
|
* cmake_host_system_information: query windows registryMarc Chevrier2022-04-131-0/+55
Fixes: #21240, #23367