Win32: Enable Unicode mode for all compilers

(cherry picked from commit fb0028c766)
This commit is contained in:
Camilla Löwy 2019-12-15 16:33:18 +01:00
parent e8dab39625
commit dd00c6dea1

View File

@ -126,6 +126,10 @@ if ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR
target_compile_options(glfw PRIVATE "-Wall")
endif()
if (WIN32)
target_compile_definitions(glfw PRIVATE _UNICODE)
endif()
# HACK: When building on MinGW, WINVER and UNICODE need to be defined before
# the inclusion of stddef.h (by glfw3.h), which is itself included before
# win32_platform.h. We define them here until a saner solution can be found