mirror of
https://github.com/reactos/CMake.git
synced 2025-02-07 12:26:40 +00:00
![Aaron C. Meadows](/assets/img/avatar_default.png)
For Visual Studio using the Preprocessor Define _SBCS. This behavior is similar to the way that _UNICODE and _MBCS work already. Added tests to confirm this behavior.
7 lines
92 B
CMake
7 lines
92 B
CMake
# a SBCS test case
|
|
project (SBCS)
|
|
|
|
add_definitions(-D_SBCS)
|
|
|
|
add_executable (SBCS SBCS.cxx)
|