mirror of
https://github.com/glfw/glfw.git
synced 2025-04-04 21:15:07 +00:00
Merge 2d4d867a91
into e7ea71be03
This commit is contained in:
commit
454b788a36
1 changed files with 8 additions and 1 deletions
|
@ -252,7 +252,14 @@ elseif (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR
|
|||
endif()
|
||||
|
||||
if (GLFW_BUILD_WIN32)
|
||||
target_compile_definitions(glfw PRIVATE UNICODE _UNICODE)
|
||||
# If requested, create a C #define to set the app's window class name.
|
||||
# This class name is baked in at compile time.
|
||||
set(_GLFW_WCN "")
|
||||
if (GLFW_WNDCLASSNAME)
|
||||
set(_GLFW_WCN "_GLFW_WNDCLASSNAME=L\"${GLFW_WNDCLASSNAME}\"")
|
||||
endif()
|
||||
|
||||
target_compile_definitions(glfw PRIVATE UNICODE _UNICODE ${_GLFW_WCN})
|
||||
endif()
|
||||
|
||||
# HACK: When building on MinGW, WINVER and UNICODE need to be defined before
|
||||
|
|
Loading…
Add table
Reference in a new issue