mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 12:40:06 +00:00
ba89e92ba6
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)
|