1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-09-01 06:20:15 +02:00

Circumvent a bunch of Visual Studio C2001 compiling errors on non-English locale

This commit is contained in:
Lim Chunwei 2025-07-30 04:37:59 +08:00
parent cb9b7b8862
commit 38f2693f78

View file

@ -245,3 +245,7 @@ if(UNIX AND NOT APPLE)
"share/icons/hicolor/${S}x${S}/apps" RENAME "${PROJECT_NAME}.png") "share/icons/hicolor/${S}x${S}/apps" RENAME "${PROJECT_NAME}.png")
endforeach(S) endforeach(S)
endif() endif()
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8")
endif()