From f11a6d3a847e8e18faefd8694373d2f11b5ec802 Mon Sep 17 00:00:00 2001 From: Alexander Kuznetsov Date: Tue, 20 Mar 2012 02:17:37 +0000 Subject: Adds support for utf paths on Windows. Not all file formats/calls are supported yet. It will be expended. Please from now on use BLI_fopen, BLI_* for file manipulations. For non-windows systems BLI_fopen just calls fopen. For Windows, the utf-8 string is translated to utf-16 string in order to call UTF version of the function. --- intern/ghost/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'intern/ghost/CMakeLists.txt') diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt index 5693aea0865..5c653ac92c0 100644 --- a/intern/ghost/CMakeLists.txt +++ b/intern/ghost/CMakeLists.txt @@ -281,6 +281,10 @@ elseif(WIN32) ${WINTAB_INC} ) + list(APPEND INC + ../utfconv + ) + list(APPEND SRC intern/GHOST_DisplayManagerWin32.cpp intern/GHOST_SystemWin32.cpp -- cgit v1.2.3