summaryrefslogtreecommitdiffstats
path: root/Source/cmWindowsRegistry.h
Commit message (Collapse)AuthorAgeFilesLines
* IWYU: Update for Debian 12 CI jobBrad King2023-07-281-0/+1
| | | | | | `include-what-you-use` diagnostics, in practice, are specific to the environment's compiler and standard library. Update includes to satisfy IWYU for our CI job under Debian 12.
* Build: Move `KWSYS_ENCODING_DEFAULT_CODEPAGE` to the config headerAlex Turbov2022-09-221-0/+2
|
* 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