Forráskód Böngészése

Win32: Fix macros being enabled for other backends

_UNICODE should not be defined for other backends even when built on
Windows.

(cherry picked from commit a646f51bca867e04254c5fdcb741741265bc4d6c)
Camilla Löwy 4 éve
szülő
commit
52b2775c2e
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/CMakeLists.txt

+ 1 - 1
src/CMakeLists.txt

@@ -131,7 +131,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()