From 6173896024ba14047c0b07e55bb969f3485f6b36 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Fri, 6 May 2022 17:04:10 +0200 Subject: [PATCH] Revert utf8 for wx on mac --- deps/wxWidgets/wxWidgets.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/wxWidgets/wxWidgets.cmake b/deps/wxWidgets/wxWidgets.cmake index 293942568..bf5fd6289 100644 --- a/deps/wxWidgets/wxWidgets.cmake +++ b/deps/wxWidgets/wxWidgets.cmake @@ -10,7 +10,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") endif() set(_unicode_utf8 OFF) -if (UNIX) # wxWidgets will not use char as the underlying type for wxString unless its forced to. +if (UNIX AND NOT APPLE) # wxWidgets will not use char as the underlying type for wxString unless its forced to. set (_unicode_utf8 ON) endif()