summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/VS10Project/VsCharacterSet.cmake
Commit message (Collapse)AuthorAgeFilesLines
* VS: Consider macros with values when determining CharacterSetDeniz Bahadir2023-11-061-0/+17
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