From f60f79d6f368f1ff1009a5700c8e966e66c01a63 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 29 Sep 2018 11:59:16 +0200 Subject: [PATCH] Make docstring for USE_NATIVE_FILE_BUFFER more generic Since the build option no longer only relates to Windows. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a90573..b922874 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,14 +137,14 @@ set(META_APP_DESCRIPTION "Useful C++ classes and routines such as argument parse set(META_FEATURES_FOR_COMPILER_DETECTION_HEADER cxx_thread_local) set(META_VERSION_MAJOR 4) set(META_VERSION_MINOR 15) -set(META_VERSION_PATCH 0) +set(META_VERSION_PATCH 1) # find required 3rd party libraries 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 ABI (required for unicode filenames under Windows)" OFF) +option(USE_NATIVE_FILE_BUFFER "enables use of native file buffer, affects ABI" OFF) if(USE_NATIVE_FILE_BUFFER) list(APPEND META_PUBLIC_COMPILE_DEFINITIONS ${META_PROJECT_VARNAME}_USE_NATIVE_FILE_BUFFER) endif()