Win32: Fix macros being enabled for other backends

_UNICODE should not be defined for other backends even when built on
Windows.
This commit is contained in:
Camilla Löwy 2021-04-16 17:09:44 +02:00
parent 0e9ec7788b
commit a646f51bca

View File

@ -140,7 +140,7 @@ elseif (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR
target_compile_options(glfw PRIVATE "-Wall") target_compile_options(glfw PRIVATE "-Wall")
endif() endif()
if (WIN32) if (_GLFW_WIN32)
target_compile_definitions(glfw PRIVATE _UNICODE) target_compile_definitions(glfw PRIVATE _UNICODE)
endif() endif()