From 99cc68bdee92c9d87fde8f175e541c0ae6f73510 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 11 Jul 2017 20:27:23 +0200 Subject: [PATCH] Improve doc of config vars --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ccb8176..24e5d94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -134,13 +134,13 @@ include(3rdParty) use_iconv(AUTO_LINKAGE REQUIRED) # configure use of native file buffer -option(USE_NATIVE_FILE_BUFFER "enables use of native file buffer under Windows, affects bc (required for unicode filenames under Windows)" OFF) +option(USE_NATIVE_FILE_BUFFER "enables use of native file buffer under Windows, affects ABI (required for unicode filenames under Windows)" OFF) if(USE_NATIVE_FILE_BUFFER) list(APPEND META_PUBLIC_COMPILE_DEFINITIONS ${META_PROJECT_VARNAME}_USE_NATIVE_FILE_BUFFER) endif() # configure forcing UTF-8 code page under Windows -option(FORCE_UTF8_CODEPAGE "forces use of UTF-8 code page under Windows" OFF) +option(FORCE_UTF8_CODEPAGE "forces use of UTF-8 code page under Windows via ApplicationUtilities::startConsole()" OFF) if(FORCE_UTF8_CODEPAGE) list(APPEND META_PRIVATE_COMPILE_DEFINITIONS ${META_PROJECT_VARNAME}_FORCE_UTF8_CODEPAGE) endif()