| commit | cbddc66277d162ed4a152724baf0878451e79cf9 | [log] [tgz] |
|---|---|---|
| author | Deniz Bahadir <deniz@code.bahadir.email> | Mon Nov 06 23:41:23 2023 +0100 |
| committer | Deniz Bahadir <deniz@code.bahadir.email> | Mon Nov 06 23:41:23 2023 +0100 |
| tree | 772b748d578fefa2e27543786a4b82c6b43c0cd9 | |
| parent | dea37a4e7df2d433c90d78a5df303f94eeda9e0f [diff] |
VS: Consider macros with values when determining CharacterSet In order to determine what character-set (Unicode, Multi-Byte, none) shall be set in the generated `*.vcxproj` files, CMake checks if one of the macros `_UNICODE` or `_SBCS` are defined. However, as these macros can be defined with or without a value, the check should always recognize these macros whether they are defined with a value or without. That is now assured by this commit. Fixes: #25379